| 37 | } |
| 38 | |
| 39 | void mitk::MaskImageFilter::SetMask(const mitk::Image *mask) |
| 40 | { |
| 41 | // Process object is not const-correct so the const_cast is required here |
| 42 | auto nonconstMask = const_cast<mitk::Image *>(mask); |
| 43 | this->ProcessObject::SetNthInput(1, nonconstMask); |
| 44 | } |
| 45 | |
| 46 | const mitk::Image *mitk::MaskImageFilter::GetMask() const |
| 47 | { |
no outgoing calls