ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBinaryMorphologyImageFilter.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 itkBinaryMorphologyImageFilter_h
19#define itkBinaryMorphologyImageFilter_h
20
21#include <vector>
22#include <queue>
27#include "itkConceptChecking.h"
28
29namespace itk
30{
95template <typename TInputImage, typename TOutputImage, typename TKernel>
96class ITK_TEMPLATE_EXPORT BinaryMorphologyImageFilter : public KernelImageFilter<TInputImage, TOutputImage, TKernel>
97{
98public:
99 ITK_DISALLOW_COPY_AND_MOVE(BinaryMorphologyImageFilter);
100
102 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
103 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
104
106 static constexpr unsigned int KernelDimension = TKernel::NeighborhoodDimension;
107
109 using InputImageType = TInputImage;
110 using OutputImageType = TOutputImage;
111
117
119 itkNewMacro(Self);
120
122 itkOverrideGetNameOfClassMacro(BinaryMorphologyImageFilter);
123
125 using KernelType = TKernel;
126
128 using KernelIteratorType = typename KernelType::ConstIterator;
129
131 using InputPixelType = typename InputImageType::PixelType;
132 using OutputPixelType = typename OutputImageType::PixelType;
134 using OffsetType = typename InputImageType::OffsetType;
135 using IndexType = typename InputImageType::IndexType;
136 using IndexValueType = typename InputImageType::IndexValueType;
137
138 using InputImageRegionType = typename InputImageType::RegionType;
139 using OutputImageRegionType = typename OutputImageType::RegionType;
140 using InputSizeType = typename InputImageType::SizeType;
141 using InputSizeValueType = typename InputImageType::SizeValueType;
142
145
149 itkSetMacro(ForegroundValue, InputPixelType);
150
153 itkGetConstMacro(ForegroundValue, InputPixelType);
154
159 itkSetMacro(BackgroundValue, OutputPixelType);
160
165 itkGetConstMacro(BackgroundValue, OutputPixelType);
166
170 itkSetMacro(BoundaryToForeground, bool);
171 itkGetConstReferenceMacro(BoundaryToForeground, bool);
172 itkBooleanMacro(BoundaryToForeground);
175 void
176 SetKernel(const KernelType & kernel) override;
177
178protected:
180 ~BinaryMorphologyImageFilter() override = default;
181 void
182 PrintSelf(std::ostream & os, Indent indent) const override;
183
186 void
188
190 using NeighborIndexContainer = std::vector<OffsetType>;
191
193 using NeighborIndexContainerContainer = std::vector<NeighborIndexContainer>;
194
196 using ComponentVectorType = std::vector<OffsetType>;
197
199 using ComponentVectorConstIterator = typename ComponentVectorType::const_iterator;
200
204 GetDifferenceSet(unsigned int code)
205 {
206 return m_KernelDifferenceSets[code];
207 }
208
211 ComponentVectorConstIterator
213 {
214 return m_KernelCCVector.begin();
215 }
216
219 ComponentVectorConstIterator
221 {
222 return m_KernelCCVector.end();
223 }
224
226
227private:
230
233
236
240 std::vector<OffsetType> m_KernelCCVector{};
241};
242} // end namespace itk
243
244#ifndef ITK_MANUAL_INSTANTIATION
245# include "itkBinaryMorphologyImageFilter.hxx"
246#endif
247
248#endif
void PrintSelf(std::ostream &os, Indent indent) const override
ComponentVectorConstIterator KernelCCVectorEnd()
~BinaryMorphologyImageFilter() override=default
ComponentVectorConstIterator KernelCCVectorBegin()
KernelImageFilter< InputImageType, OutputImageType, KernelType > Superclass
void SetKernel(const KernelType &kernel) override
NeighborIndexContainer & GetDifferenceSet(unsigned int code)
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....