ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBinaryThresholdImageFilter.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 itkBinaryThresholdImageFilter_h
19#define itkBinaryThresholdImageFilter_h
20
22#include "itkConceptChecking.h"
24
25namespace itk
26{
64namespace Functor
65{
66template <typename TInput, typename TOutput>
67class ITK_TEMPLATE_EXPORT BinaryThreshold
68{
69public:
77
78 ~BinaryThreshold() = default;
79
80 void
81 SetLowerThreshold(const TInput & thresh)
82 {
83 m_LowerThreshold = thresh;
84 }
85 void
86 SetUpperThreshold(const TInput & thresh)
87 {
88 m_UpperThreshold = thresh;
89 }
90 void
91 SetInsideValue(const TOutput & value)
92 {
93 m_InsideValue = value;
94 }
95 void
96 SetOutsideValue(const TOutput & value)
97 {
98 m_OutsideValue = value;
99 }
100
101
102 bool
109
111
112 inline TOutput
113 operator()(const TInput & A) const
114 {
115 if (m_LowerThreshold <= A && A <= m_UpperThreshold)
116 {
117 return m_InsideValue;
118 }
119 return m_OutsideValue;
120 }
121
122private:
127};
128} // namespace Functor
129
130template <typename TInputImage, typename TOutputImage>
131class ITK_TEMPLATE_EXPORT BinaryThresholdImageFilter
133 TInputImage,
134 TOutputImage,
135 Functor::BinaryThreshold<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
136{
137public:
138 ITK_DISALLOW_COPY_AND_MOVE(BinaryThresholdImageFilter);
139
143 TInputImage,
144 TOutputImage,
148
150 itkNewMacro(Self);
151
153 itkOverrideGetNameOfClassMacro(BinaryThresholdImageFilter);
154
156 using InputPixelType = typename TInputImage::PixelType;
157 using OutputPixelType = typename TOutputImage::PixelType;
158
161
164 itkSetMacro(OutsideValue, OutputPixelType);
165
167 itkGetConstReferenceMacro(OutsideValue, OutputPixelType);
168
171 itkSetMacro(InsideValue, OutputPixelType);
172
174 itkGetConstReferenceMacro(InsideValue, OutputPixelType);
175
180 virtual void
182
183 virtual void
185
186 virtual void
188
189 virtual void
191
193 virtual InputPixelType
195
196 virtual InputPixelObjectType *
198
199 virtual const InputPixelObjectType *
201
202 virtual InputPixelType
204
205 virtual InputPixelObjectType *
207
208 virtual const InputPixelObjectType *
210
211 itkConceptMacro(OutputEqualityComparableCheck, (Concept::EqualityComparable<OutputPixelType>));
212 itkConceptMacro(InputPixelTypeComparable, (Concept::Comparable<InputPixelType>));
213 itkConceptMacro(InputOStreamWritableCheck, (Concept::OStreamWritable<InputPixelType>));
214 itkConceptMacro(OutputOStreamWritableCheck, (Concept::OStreamWritable<OutputPixelType>));
215
216protected:
218 ~BinaryThresholdImageFilter() override = default;
219 void
220 PrintSelf(std::ostream & os, Indent indent) const override;
221
224 void
226
227private:
230};
231} // end namespace itk
232
233#ifndef ITK_MANUAL_INSTANTIATION
234# include "itkBinaryThresholdImageFilter.hxx"
235#endif
236
237#endif
typename TInputImage::PixelType InputPixelType
virtual const InputPixelObjectType * GetLowerThresholdInput() const
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::BinaryThreshold< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
void BeforeThreadedGenerateData() override
virtual InputPixelType GetLowerThreshold() const
virtual InputPixelObjectType * GetUpperThresholdInput()
virtual const InputPixelObjectType * GetUpperThresholdInput() const
~BinaryThresholdImageFilter() override=default
virtual void SetUpperThreshold(const InputPixelType threshold)
virtual void SetLowerThreshold(const InputPixelType threshold)
typename TOutputImage::PixelType OutputPixelType
virtual void SetLowerThresholdInput(const InputPixelObjectType *)
virtual void SetUpperThresholdInput(const InputPixelObjectType *)
virtual InputPixelObjectType * GetLowerThresholdInput()
SimpleDataObjectDecorator< InputPixelType > InputPixelObjectType
virtual InputPixelType GetUpperThreshold() const
void PrintSelf(std::ostream &os, Indent indent) const override
void SetUpperThreshold(const TInput &thresh)
void SetLowerThreshold(const TInput &thresh)
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(BinaryThreshold)
bool operator==(const BinaryThreshold &other) const
TOutput operator()(const TInput &A) const
Control indentation during Print() invocation.
Definition itkIndent.h:50
static constexpr T NonpositiveMin()
static constexpr T max(const T &)
Decorates any "simple" data type (data types without smart pointers) with a DataObject API.
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
bool ExactlyEquals(const TInput1 &x1, const TInput2 &x2)
Return the result of an exact comparison between two scalar values of potentially different types.
Definition itkMath.h:719
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....