ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkConfidenceConnectedImageFilter.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 itkConfidenceConnectedImageFilter_h
19#define itkConfidenceConnectedImageFilter_h
20
21#include "itkImage.h"
23
24namespace itk
25{
63template <typename TInputImage, typename TOutputImage>
64class ITK_TEMPLATE_EXPORT ConfidenceConnectedImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
65{
66public:
67 ITK_DISALLOW_COPY_AND_MOVE(ConfidenceConnectedImageFilter);
68
74
76 itkNewMacro(Self);
77
79 itkOverrideGetNameOfClassMacro(ConfidenceConnectedImageFilter);
80
81 using InputImageType = TInputImage;
82 using InputImagePointer = typename InputImageType::Pointer;
83 using InputImageRegionType = typename InputImageType::RegionType;
84 using InputImagePixelType = typename InputImageType::PixelType;
85 using IndexType = typename InputImageType::IndexType;
86 using SizeType = typename InputImageType::SizeType;
87
88 using OutputImageType = TOutputImage;
89 using OutputImagePointer = typename OutputImageType::Pointer;
90 using OutputImageRegionType = typename OutputImageType::RegionType;
91 using OutputImagePixelType = typename OutputImageType::PixelType;
92
93 using SeedsContainerType = std::vector<IndexType>;
94
96
97 void
98 PrintSelf(std::ostream & os, Indent indent) const override;
99
101 void
102 SetSeed(const IndexType & seed);
103
105 void
107
109 void
110 AddSeed(const IndexType & seed);
111
115 itkSetMacro(Multiplier, double);
116 itkGetConstMacro(Multiplier, double);
120 itkSetMacro(NumberOfIterations, unsigned int);
121 itkGetConstMacro(NumberOfIterations, unsigned int);
125 itkSetMacro(ReplaceValue, OutputImagePixelType);
126 itkGetConstMacro(ReplaceValue, OutputImagePixelType);
131 itkSetMacro(InitialNeighborhoodRadius, unsigned int);
132 itkGetConstReferenceMacro(InitialNeighborhoodRadius, unsigned int);
137 itkGetConstReferenceMacro(Mean, InputRealType);
138
142 itkGetConstReferenceMacro(Variance, InputRealType);
143
146 itkSetMacro(Seeds, SeedsContainerType);
147 itkGetConstReferenceMacro(Seeds, SeedsContainerType);
149
152
153protected:
156
157 // Override since the filter needs all the data for the algorithm
158 void
160
161 // Override since the filter produces the entire dataset
162 void
164
165 void
166 GenerateData() override;
167
168private:
170 double m_Multiplier{};
171 unsigned int m_NumberOfIterations{};
176};
177} // end namespace itk
178
179#ifndef ITK_MANUAL_INSTANTIATION
180# include "itkConfidenceConnectedImageFilter.hxx"
181#endif
182
183#endif
typename OutputImageType::RegionType OutputImageRegionType
typename InputImageType::RegionType InputImageRegionType
typename InputImageType::PixelType InputImagePixelType
void EnlargeOutputRequestedRegion(DataObject *output) override
ImageToImageFilter< TInputImage, TOutputImage > Superclass
void AddSeed(const IndexType &seed)
typename OutputImageType::PixelType OutputImagePixelType
typename OutputImageType::Pointer OutputImagePointer
void PrintSelf(std::ostream &os, Indent indent) const override
void SetSeed(const IndexType &seed)
~ConfidenceConnectedImageFilter() override=default
void GenerateInputRequestedRegion() override
typename NumericTraits< InputImagePixelType >::RealType InputRealType
Base class for all data objects in ITK.
Control indentation during Print() invocation.
Definition itkIndent.h:51
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....