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
114 itkSetMacro(Multiplier, double);
115 itkGetConstMacro(Multiplier, double);
117
119 itkSetMacro(NumberOfIterations, unsigned int);
120 itkGetConstMacro(NumberOfIterations, unsigned int);
122
124 itkSetMacro(ReplaceValue, OutputImagePixelType);
125 itkGetConstMacro(ReplaceValue, OutputImagePixelType);
127
130 itkSetMacro(InitialNeighborhoodRadius, unsigned int);
131 itkGetConstReferenceMacro(InitialNeighborhoodRadius, unsigned int);
133
137 itkGetConstReferenceMacro(Mean, InputRealType);
138
142 itkGetConstReferenceMacro(Variance, InputRealType);
143
145 virtual const SeedsContainerType &
146 GetSeeds() const;
147
150
151protected:
154
155 // Override since the filter needs all the data for the algorithm
156 void
158
159 // Override since the filter produces the entire dataset
160 void
162
163 void
164 GenerateData() override;
165
166private:
168 double m_Multiplier{};
169 unsigned int m_NumberOfIterations{};
174};
175} // end namespace itk
176
177#ifndef ITK_MANUAL_INSTANTIATION
178# include "itkConfidenceConnectedImageFilter.hxx"
179#endif
180
181#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
virtual const SeedsContainerType & GetSeeds() const
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:50
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....