ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBinaryContourImageFilter.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 itkBinaryContourImageFilter_h
19#define itkBinaryContourImageFilter_h
20
23#include <vector>
24
25namespace itk
26{
51
52template <typename TInputImage, typename TOutputImage>
53class ITK_TEMPLATE_EXPORT BinaryContourImageFilter
54 : public InPlaceImageFilter<TInputImage, TOutputImage>
55 , protected ScanlineFilterCommon<TInputImage, TOutputImage>
56{
57public:
58 ITK_DISALLOW_COPY_AND_MOVE(BinaryContourImageFilter);
59
69
73 itkOverrideGetNameOfClassMacro(BinaryContourImageFilter);
74
78 itkNewMacro(Self);
79
83 using InputImageType = TInputImage;
84 using InputImagePointer = typename InputImageType::Pointer;
85 using InputImageConstPointer = typename InputImageType::ConstPointer;
86 using IndexType = typename InputImageType::IndexType;
87 using SizeType = typename InputImageType::SizeType;
88 using OffsetType = typename InputImageType::OffsetType;
89 using InputImagePixelType = typename InputImageType::PixelType;
90 using InputInternalPixelType = typename InputImageType::InternalPixelType;
91
92 using OutputImageType = TOutputImage;
93 using OutputImagePointer = typename OutputImageType::Pointer;
94 using RegionType = typename OutputImageType::RegionType;
95 using OutputIndexType = typename OutputImageType::IndexType;
96 using OutputSizeType = typename OutputImageType::SizeType;
97 using OutputOffsetType = typename OutputImageType::OffsetType;
98 using OutputImagePixelType = typename OutputImageType::PixelType;
99 using OutputInternalPixelType = typename OutputImageType::InternalPixelType;
100
101 static constexpr unsigned int ImageDimension = OutputImageType::ImageDimension;
109 itkSetMacro(FullyConnected, bool);
110 itkGetConstReferenceMacro(FullyConnected, bool);
111 itkBooleanMacro(FullyConnected);
118 itkSetMacro(BackgroundValue, OutputImagePixelType);
119 itkGetConstMacro(BackgroundValue, OutputImagePixelType);
126 itkSetMacro(ForegroundValue, InputImagePixelType);
127 itkGetConstMacro(ForegroundValue, InputImagePixelType);
129protected:
131 ~BinaryContourImageFilter() override = default;
132
133 void
134 PrintSelf(std::ostream & os, Indent indent) const override;
135
136 void
137 GenerateData() override;
138
139 void
141
142 void
144
145 void
146 DynamicThreadedGenerateData(const RegionType & outputRegionForThread) override;
147
148 void
149 ThreadedIntegrateData(const RegionType & outputRegionForThread);
150
154 void
156
161 void
162 EnlargeOutputRequestedRegion(DataObject * itkNotUsed(output)) override;
163
165
177
178private:
181
184};
185} // end namespace itk
186
187#ifndef ITK_MANUAL_INSTANTIATION
188# include "itkBinaryContourImageFilter.hxx"
189#endif
190
191#endif
typename OutputImageType::SizeType OutputSizeType
typename ScanlineFunctions::LineEncodingType LineEncodingType
~BinaryContourImageFilter() override=default
SmartPointer< const Self > ConstPointer
void GenerateInputRequestedRegion() override
void AfterThreadedGenerateData() override
typename InputImageType::SizeType SizeType
typename ScanlineFunctions::LineEncodingConstIterator LineEncodingConstIterator
typename ScanlineFunctions::ConsecutiveVectorType ConsecutiveVectorType
typename OutputImageType::Pointer OutputImagePointer
static constexpr unsigned int ImageDimension
typename OutputImageType::RegionType RegionType
typename ScanlineFunctions::LineMapType LineMapType
typename ScanlineFunctions::UnionFindType UnionFindType
typename InputImageType::OffsetType OffsetType
typename OutputImageType::InternalPixelType OutputInternalPixelType
typename InputImageType::IndexType IndexType
typename ScanlineFunctions::OutSizeType OutSizeType
typename InputImageType::InternalPixelType InputInternalPixelType
void BeforeThreadedGenerateData() override
void PrintSelf(std::ostream &os, Indent indent) const override
typename ScanlineFunctions::LineEncodingIterator LineEncodingIterator
typename InputImageType::ConstPointer InputImageConstPointer
void EnlargeOutputRequestedRegion(DataObject *output) override
InPlaceImageFilter< TInputImage, TOutputImage > Superclass
typename OutputImageType::IndexType OutputIndexType
typename OutputImageType::OffsetType OutputOffsetType
typename ScanlineFunctions::RunLength RunLength
typename ScanlineFunctions::OffsetVectorType OffsetVectorType
typename ScanlineFunctions::OffsetVectorConstIterator OffsetVectorConstIterator
void DynamicThreadedGenerateData(const RegionType &outputRegionForThread) override
void ThreadedIntegrateData(const RegionType &outputRegionForThread)
typename InputImageType::Pointer InputImagePointer
typename InputImageType::PixelType InputImagePixelType
typename ScanlineFunctions::InternalLabelType InternalLabelType
ScanlineFilterCommon< TInputImage, TOutputImage > ScanlineFunctions
typename OutputImageType::PixelType OutputImagePixelType
Base class for all data objects in ITK.
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void UnRegister() const noexcept
virtual void Register() const
typename OffsetVectorType::const_iterator OffsetVectorConstIterator
typename TOutputImage::RegionType::SizeType OutSizeType
typename LineEncodingType::const_iterator LineEncodingConstIterator
typename LineEncodingType::iterator LineEncodingIterator
std::vector< LineEncodingType > LineMapType
std::vector< RunLength > LineEncodingType
std::vector< OffsetValueType > OffsetVectorType
std::vector< InternalLabelType > UnionFindType
std::vector< OutputPixelType > ConsecutiveVectorType
ScanlineFilterCommon(EnclosingFilter *enclosingFilter)
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....