ITK  6.0.0
Insight Toolkit
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;
84 using InputImagePixelType = typename InputImageType::PixelType;
87
88 using OutputImageType = TOutputImage;
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
114 itkSetMacro(Multiplier, double);
115 itkGetConstMacro(Multiplier, double);
119 itkSetMacro(NumberOfIterations, unsigned int);
120 itkGetConstMacro(NumberOfIterations, unsigned int);
124 itkSetMacro(ReplaceValue, OutputImagePixelType);
125 itkGetConstMacro(ReplaceValue, OutputImagePixelType);
130 itkSetMacro(InitialNeighborhoodRadius, unsigned int);
131 itkGetConstReferenceMacro(InitialNeighborhoodRadius, unsigned int);
137 itkGetConstReferenceMacro(Mean, InputRealType);
138
142 itkGetConstReferenceMacro(Variance, InputRealType);
143
145 virtual const SeedsContainerType &
146 GetSeeds() const;
147
148#ifdef ITK_USE_CONCEPT_CHECKING
149 // Begin concept checking
152 // End concept checking
153#endif
154
155protected:
158
159 // Override since the filter needs all the data for the algorithm
160 void
162
163 // Override since the filter produces the entire dataset
164 void
166
167 void
168 GenerateData() override;
169
170private:
172 double m_Multiplier{};
173 unsigned int m_NumberOfIterations{};
174 OutputImagePixelType m_ReplaceValue{};
175 unsigned int m_InitialNeighborhoodRadius{};
177 InputRealType m_Variance{};
178};
179} // end namespace itk
180
181#ifndef ITK_MANUAL_INSTANTIATION
182# include "itkConfidenceConnectedImageFilter.hxx"
183#endif
184
185#endif
Segment pixels with similar statistics using connectivity.
void EnlargeOutputRequestedRegion(DataObject *output) override
void AddSeed(const IndexType &seed)
virtual const SeedsContainerType & GetSeeds() const
void PrintSelf(std::ostream &os, Indent indent) const override
void SetSeed(const IndexType &seed)
typename InputImageType::IndexType IndexType
~ConfidenceConnectedImageFilter() override=default
void GenerateInputRequestedRegion() override
typename NumericTraits< InputImagePixelType >::RealType InputRealType
Base class for all data objects in ITK.
Base class for all process objects that output image data.
typename OutputImageType::PixelType OutputImagePixelType
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
typename OutputImageType::Pointer OutputImagePointer
Base class for filters that take an image as input and produce an image as output.
typename InputImageType::Pointer InputImagePointer
typename InputImageType::PixelType InputImagePixelType
typename InputImageType::RegionType InputImageRegionType
Control indentation during Print() invocation.
Definition: itkIndent.h:50
Define additional traits for native types such as int or float.
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
SmartPointer< Self > Pointer
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....