ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkAnchorOpenCloseImageFilter.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 itkAnchorOpenCloseImageFilter_h
19#define itkAnchorOpenCloseImageFilter_h
20
22#include "itkProgressReporter.h"
25#include "itkBresenhamLine.h"
26
27namespace itk
28{
50template <typename TImage, typename TKernel, typename TCompare1, typename TCompare2>
51class ITK_TEMPLATE_EXPORT AnchorOpenCloseImageFilter : public KernelImageFilter<TImage, TImage, TKernel>
52{
53public:
54 ITK_DISALLOW_COPY_AND_MOVE(AnchorOpenCloseImageFilter);
55
61
64 using KernelType = TKernel;
65 using KernelLType = typename KernelType::LType;
66
67 using InputImageType = TImage;
68 using InputImagePointer = typename InputImageType::Pointer;
69 using InputImageConstPointer = typename InputImageType::ConstPointer;
70 using InputImageRegionType = typename InputImageType::RegionType;
71 using InputImagePixelType = typename InputImageType::PixelType;
72
74 static constexpr unsigned int InputImageDimension = TImage::ImageDimension;
75 static constexpr unsigned int OutputImageDimension = TImage::ImageDimension;
76
78 itkNewMacro(Self);
79
81 itkOverrideGetNameOfClassMacro(AnchorOpenCloseImageFilter);
82
83protected:
85 ~AnchorOpenCloseImageFilter() override = default;
86 void
87 PrintSelf(std::ostream & os, Indent indent) const override;
88
90 void
91 DynamicThreadedGenerateData(const InputImageRegionType & outputRegionForThread) override;
92
93
96
97private:
100
101 // the class that operates on lines -- does the opening in one
102 // operation. The classes following are named on the assumption that
103 // we are doing an opening
104
105 // using AnchorLineOpenType = AnchorOpenCloseLine<InputImagePixelType, THistogramCompare,
106 // TFunction1, TFunction2>;
108
110
111 // the class that does the dilation
113
114 void
116 InputImagePointer output,
117 InputImagePixelType border,
118 KernelLType line,
119 AnchorLineOpenType & AnchorLineOpen,
120 const BresOffsetArray LineOffsets,
121 std::vector<InputImagePixelType> & outbuffer,
122 const InputImageRegionType AllImage,
123 const InputImageRegionType face);
124}; // end of class
125} // end namespace itk
126
127#ifndef ITK_MANUAL_INSTANTIATION
128# include "itkAnchorOpenCloseImageFilter.hxx"
129#endif
130
131#endif
class to implement erosions and dilations using anchor methods. This is the base class that must be i...
void PrintSelf(std::ostream &os, Indent indent) const override
~AnchorOpenCloseImageFilter() override=default
void DynamicThreadedGenerateData(const InputImageRegionType &outputRegionForThread) override
void DoFaceOpen(InputImageConstPointer input, InputImagePointer output, InputImagePixelType border, KernelLType line, AnchorLineOpenType &AnchorLineOpen, const BresOffsetArray LineOffsets, std::vector< InputImagePixelType > &outbuffer, const InputImageRegionType AllImage, const InputImageRegionType face)
class to implement openings and closings using anchor methods. This is the base class that must be in...
Compute indices along a line in n dimensions.
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....