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>
23
#include "
itkKernelImageFilter.h
"
24
#include "
itkNeighborhoodIterator.h
"
25
#include "
itkImageBoundaryCondition.h
"
26
#include "
itkImageRegionIterator.h
"
27
#include "
itkConceptChecking.h
"
28
29
namespace
itk
30
{
95
template
<
typename
TInputImage,
typename
TOutputImage,
typename
TKernel>
96
class
ITK_TEMPLATE_EXPORT
BinaryMorphologyImageFilter
:
public
KernelImageFilter
<TInputImage, TOutputImage, TKernel>
97
{
98
public
:
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
113
using
Self
=
BinaryMorphologyImageFilter
;
114
using
Superclass
=
KernelImageFilter<InputImageType, OutputImageType, TKernel>
;
115
using
Pointer
=
SmartPointer<Self>
;
116
using
ConstPointer
=
SmartPointer<const Self>
;
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;
133
using
InputRealType
=
typename
NumericTraits<InputPixelType>::RealType
;
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
144
itkConceptMacro
(ImageDimensionCheck, (
Concept::SameDimension<Self::InputImageDimension, Self::OutputImageDimension>
));
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
178
protected
:
179
BinaryMorphologyImageFilter
();
180
~BinaryMorphologyImageFilter
()
override
=
default
;
181
void
182
PrintSelf
(std::ostream & os,
Indent
indent)
const override
;
183
186
void
187
AnalyzeKernel
();
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
203
NeighborIndexContainer
&
204
GetDifferenceSet
(
unsigned
int
code)
205
{
206
return
m_KernelDifferenceSets
[code];
207
}
208
211
ComponentVectorConstIterator
212
KernelCCVectorBegin
()
213
{
214
return
m_KernelCCVector
.begin();
215
}
216
219
ComponentVectorConstIterator
220
KernelCCVectorEnd
()
221
{
222
return
m_KernelCCVector
.end();
223
}
224
225
bool
m_BoundaryToForeground
{};
226
227
private
:
229
InputPixelType
m_ForegroundValue
{};
230
232
OutputPixelType
m_BackgroundValue
{};
233
235
NeighborIndexContainerContainer
m_KernelDifferenceSets
{};
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
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::InputPixelType
typename InputImageType::PixelType InputPixelType
Definition
itkBinaryMorphologyImageFilter.h:131
itk::BinaryMorphologyImageFilter::PrintSelf
void PrintSelf(std::ostream &os, Indent indent) const override
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::ConstPointer
SmartPointer< const Self > ConstPointer
Definition
itkBinaryMorphologyImageFilter.h:116
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::InputSizeType
typename InputImageType::SizeType InputSizeType
Definition
itkBinaryMorphologyImageFilter.h:140
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::OutputImageType
OutputImageType OutputImageType
Definition
itkBinaryMorphologyImageFilter.h:110
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::KernelType
KernelType KernelType
Definition
itkBinaryMorphologyImageFilter.h:125
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::KernelIteratorType
typename KernelType::ConstIterator KernelIteratorType
Definition
itkBinaryMorphologyImageFilter.h:128
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::Pointer
SmartPointer< Self > Pointer
Definition
itkBinaryMorphologyImageFilter.h:115
itk::BinaryMorphologyImageFilter::KernelCCVectorEnd
ComponentVectorConstIterator KernelCCVectorEnd()
Definition
itkBinaryMorphologyImageFilter.h:220
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::InputSizeValueType
typename InputImageType::SizeValueType InputSizeValueType
Definition
itkBinaryMorphologyImageFilter.h:141
itk::BinaryMorphologyImageFilter::~BinaryMorphologyImageFilter
~BinaryMorphologyImageFilter() override=default
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::OutputImageDimension
static constexpr unsigned int OutputImageDimension
Definition
itkBinaryMorphologyImageFilter.h:103
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::m_BoundaryToForeground
bool m_BoundaryToForeground
Definition
itkBinaryMorphologyImageFilter.h:225
itk::BinaryMorphologyImageFilter::KernelCCVectorBegin
ComponentVectorConstIterator KernelCCVectorBegin()
Definition
itkBinaryMorphologyImageFilter.h:212
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::InputImageDimension
static constexpr unsigned int InputImageDimension
Definition
itkBinaryMorphologyImageFilter.h:102
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::ComponentVectorConstIterator
typename ComponentVectorType::const_iterator ComponentVectorConstIterator
Definition
itkBinaryMorphologyImageFilter.h:199
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::NeighborIndexContainerContainer
std::vector< NeighborIndexContainer > NeighborIndexContainerContainer
Definition
itkBinaryMorphologyImageFilter.h:193
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::InputRealType
typename NumericTraits< InputPixelType >::RealType InputRealType
Definition
itkBinaryMorphologyImageFilter.h:133
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::Superclass
KernelImageFilter< InputImageType, OutputImageType, KernelType > Superclass
Definition
itkBinaryMorphologyImageFilter.h:114
itk::BinaryMorphologyImageFilter::BinaryMorphologyImageFilter
BinaryMorphologyImageFilter()
itk::BinaryMorphologyImageFilter::SetKernel
void SetKernel(const KernelType &kernel) override
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::InputImageType
InputImageType InputImageType
Definition
itkBinaryMorphologyImageFilter.h:109
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::OffsetType
typename InputImageType::OffsetType OffsetType
Definition
itkBinaryMorphologyImageFilter.h:134
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::ComponentVectorType
std::vector< OffsetType > ComponentVectorType
Definition
itkBinaryMorphologyImageFilter.h:196
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::KernelDimension
static constexpr unsigned int KernelDimension
Definition
itkBinaryMorphologyImageFilter.h:106
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::InputImageRegionType
typename InputImageType::RegionType InputImageRegionType
Definition
itkBinaryMorphologyImageFilter.h:138
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::IndexType
typename InputImageType::IndexType IndexType
Definition
itkBinaryMorphologyImageFilter.h:135
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::m_ForegroundValue
InputPixelType m_ForegroundValue
Definition
itkBinaryMorphologyImageFilter.h:229
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::OutputPixelType
typename OutputImageType::PixelType OutputPixelType
Definition
itkBinaryMorphologyImageFilter.h:132
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::m_KernelCCVector
std::vector< OffsetType > m_KernelCCVector
Definition
itkBinaryMorphologyImageFilter.h:240
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition
itkBinaryMorphologyImageFilter.h:139
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::m_BackgroundValue
OutputPixelType m_BackgroundValue
Definition
itkBinaryMorphologyImageFilter.h:232
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::m_KernelDifferenceSets
NeighborIndexContainerContainer m_KernelDifferenceSets
Definition
itkBinaryMorphologyImageFilter.h:235
itk::BinaryMorphologyImageFilter::AnalyzeKernel
void AnalyzeKernel()
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::IndexValueType
typename InputImageType::IndexValueType IndexValueType
Definition
itkBinaryMorphologyImageFilter.h:136
itk::BinaryMorphologyImageFilter::GetDifferenceSet
NeighborIndexContainer & GetDifferenceSet(unsigned int code)
Definition
itkBinaryMorphologyImageFilter.h:204
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::NeighborIndexContainer
std::vector< OffsetType > NeighborIndexContainer
Definition
itkBinaryMorphologyImageFilter.h:190
itk::BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType >::Self
BinaryMorphologyImageFilter Self
Definition
itkBinaryMorphologyImageFilter.h:113
itk::Indent
Control indentation during Print() invocation.
Definition
itkIndent.h:50
itk::KernelImageFilter::KernelImageFilter
KernelImageFilter()
itk::NumericTraits::RealType
double RealType
Definition
itkNumericTraits.h:86
itk::SmartPointer
Implements transparent reference counting.
Definition
itkSmartPointer.h:52
itkConceptChecking.h
itkConceptMacro
#define itkConceptMacro(name, concept)
Definition
itkConceptChecking.h:65
itkImageBoundaryCondition.h
itkImageRegionIterator.h
itkKernelImageFilter.h
itkNeighborhoodIterator.h
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition
itkAnatomicalOrientation.h:30
itk::Concept::SameDimension
Definition
itkConceptChecking.h:682
ITK
Modules
Filtering
BinaryMathematicalMorphology
include
itkBinaryMorphologyImageFilter.h
Generated on
unknown
for ITK by
1.13.2
Tarballs of release and nightly generated Doxygen documentation are available in the
InsightSoftwareConsortium/ITKDoxygen
GitHub Releases
.