ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkRobustAutomaticThresholdImageFilter.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 itkRobustAutomaticThresholdImageFilter_h
19#define itkRobustAutomaticThresholdImageFilter_h
20
23
24namespace itk
25{
48
49template <typename TInputImage, typename TGradientImage = TInputImage, typename TOutputImage = TInputImage>
50class ITK_TEMPLATE_EXPORT RobustAutomaticThresholdImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
51{
52public:
53 ITK_DISALLOW_COPY_AND_MOVE(RobustAutomaticThresholdImageFilter);
54
60
62 itkNewMacro(Self);
63
65 itkOverrideGetNameOfClassMacro(RobustAutomaticThresholdImageFilter);
66
68 using InputImageType = TInputImage;
69 using GradientImageType = TGradientImage;
70
72 using InputPixelType = typename TInputImage::PixelType;
73 using OutputPixelType = typename TOutputImage::PixelType;
74 using GradientPixelType = typename TGradientImage::PixelType;
75
77 using InputImagePointer = typename TInputImage::Pointer;
78 using OutputImagePointer = typename TOutputImage::Pointer;
79 using GradientImagePointer = typename TGradientImage::Pointer;
80
81 using InputSizeType = typename TInputImage::SizeType;
82 using InputIndexType = typename TInputImage::IndexType;
83 using InputImageRegionType = typename TInputImage::RegionType;
84 using OutputSizeType = typename TOutputImage::SizeType;
85 using OutputIndexType = typename TOutputImage::IndexType;
86 using OutputImageRegionType = typename TOutputImage::RegionType;
87
89
91 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
92 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
93
96 itkSetMacro(OutsideValue, OutputPixelType);
97
99 itkGetConstMacro(OutsideValue, OutputPixelType);
100
103 itkSetMacro(InsideValue, OutputPixelType);
104
106 itkGetConstMacro(InsideValue, OutputPixelType);
107
109 itkGetConstMacro(Threshold, InputPixelType);
110
111 itkSetMacro(Pow, double);
112 itkGetConstMacro(Pow, double);
113
115 itkConceptMacro(OutputOStreamWritableCheck, (Concept::OStreamWritable<OutputPixelType>));
116
118 void
120 {
121 // Process object is not const-correct so the const casting is required.
122 this->SetNthInput(1, const_cast<GradientImageType *>(input));
123 }
124
126 GradientImageType *
128 {
129 return static_cast<GradientImageType *>(const_cast<DataObject *>(this->ProcessObject::GetInput(1)));
130 }
131
133 void
134 SetInput1(TInputImage * input)
135 {
136 this->SetInput(input);
137 }
138
140 void
142 {
143 this->SetGradientImage(input);
144 }
145
146protected:
149 void
150 PrintSelf(std::ostream & os, Indent indent) const override;
151
152 void
154
155 void
156 GenerateData() override;
157
158private:
159 double m_Pow{ 1 };
163};
164} // end namespace itk
165
166#ifndef ITK_MANUAL_INSTANTIATION
167# include "itkRobustAutomaticThresholdImageFilter.hxx"
168#endif
169
170#endif
Base class for all data objects in ITK.
virtual void SetInput(const InputImageType *input)
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void SetNthInput(DataObjectPointerArraySizeType idx, DataObject *input)
DataObject * GetInput(const DataObjectIdentifierType &key)
Return an input.
ImageToImageFilter< TInputImage, TOutputImage > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
RobustAutomaticThresholdCalculator< TInputImage, TGradientImage > CalculatorType
~RobustAutomaticThresholdImageFilter() override=default
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....