ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMaskNeighborhoodOperatorImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkMaskNeighborhoodOperatorImageFilter_h
19#define itkMaskNeighborhoodOperatorImageFilter_h
20
22
23namespace itk
24{
50template <typename TInputImage,
51 typename TMaskImage,
52 typename TOutputImage,
53 typename TOperatorValueType = typename TOutputImage::PixelType>
54class ITK_TEMPLATE_EXPORT MaskNeighborhoodOperatorImageFilter
55 : public NeighborhoodOperatorImageFilter<TInputImage, TOutputImage, TOperatorValueType>
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(MaskNeighborhoodOperatorImageFilter);
59
63
66
68 itkNewMacro(Self);
69
71 itkOverrideGetNameOfClassMacro(MaskNeighborhoodOperatorImageFilter);
72
75 using OutputPixelType = typename TOutputImage::PixelType;
76 using OutputInternalPixelType = typename TOutputImage::InternalPixelType;
77 using InputPixelType = typename TInputImage::PixelType;
78 using InputInternalPixelType = typename TInputImage::InternalPixelType;
79 using MaskPixelType = typename TMaskImage::PixelType;
80 using MaskInternalPixelType = typename TMaskImage::InternalPixelType;
81
84 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
85 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
86 static constexpr unsigned int MaskImageDimension = TMaskImage::ImageDimension;
87
89 using InputImageType = TInputImage;
90 using MaskImageType = TMaskImage;
91 using OutputImageType = TOutputImage;
92 using InputImagePointer = typename InputImageType::Pointer;
93 using MaskImagePointer = typename MaskImageType::Pointer;
94
97
100 using typename Superclass::OperatorValueType;
101
104
108 void
109 SetMaskImage(const TMaskImage * mask);
110
114 const TMaskImage *
116
120 itkSetMacro(DefaultValue, OutputPixelType);
121
124 itkGetConstMacro(DefaultValue, OutputPixelType);
125
129 itkSetMacro(UseDefaultValue, bool);
130
132 itkGetConstReferenceMacro(UseDefaultValue, bool);
133
135 itkBooleanMacro(UseDefaultValue);
136
137 itkConceptMacro(OutputEqualityComparableCheck, (Concept::EqualityComparable<OutputPixelType>));
143
144protected:
149 void
150 PrintSelf(std::ostream & os, Indent indent) const override;
151
157 void
159
171 void
172 DynamicThreadedGenerateData(const OutputImageRegionType & outputRegionForThread) override;
173
174
175private:
177 bool m_UseDefaultValue{ true };
178};
179} // end namespace itk
180
181#ifndef ITK_MANUAL_INSTANTIATION
182# include "itkMaskNeighborhoodOperatorImageFilter.hxx"
183#endif
184
185#endif
A virtual base object that defines an interface to a class of boundary condition objects for use by n...
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename TMaskImage::InternalPixelType MaskInternalPixelType
NeighborhoodOperatorImageFilter< TInputImage, TOutputImage, TOperatorValueType > Superclass
const TMaskImage * GetMaskImage() const
typename TInputImage::InternalPixelType InputInternalPixelType
typename TOutputImage::InternalPixelType OutputInternalPixelType
~MaskNeighborhoodOperatorImageFilter() override=default
void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) override
void SetMaskImage(const TMaskImage *mask)
ImageBoundaryCondition< OutputImageType > * ImageBoundaryConditionPointerType
void PrintSelf(std::ostream &os, Indent indent) const override
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....