ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBinaryThresholdProjectionImageFilter.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 itkBinaryThresholdProjectionImageFilter_h
19#define itkBinaryThresholdProjectionImageFilter_h
20
22#include "itkConceptChecking.h"
23
24namespace itk
25{
47
48namespace Function
49{
50template <typename TInputPixel, typename TOutputPixel>
52{
53public:
56
57 inline void
59 {
60 m_IsForeground = false;
61 }
62
63 inline void
64 operator()(const TInputPixel & input)
65 {
66 if (input >= m_ThresholdValue)
67 {
68 m_IsForeground = true;
69 }
70 }
71
72 inline TOutputPixel
74 {
76 {
77 return m_ForegroundValue;
78 }
79
80 return m_BackgroundValue;
81 }
82
84
85 TInputPixel m_ThresholdValue;
86 TOutputPixel m_ForegroundValue;
87 TOutputPixel m_BackgroundValue;
88};
89} // end namespace Function
90
91template <typename TInputImage, typename TOutputImage>
93 : public ProjectionImageFilter<
94 TInputImage,
95 TOutputImage,
96 Function::BinaryThresholdAccumulator<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
97{
98public:
99 ITK_DISALLOW_COPY_AND_MOVE(BinaryThresholdProjectionImageFilter);
100
103 TInputImage,
104 TOutputImage,
106
109
111 itkOverrideGetNameOfClassMacro(BinaryThresholdProjectionImageFilter);
112
114 itkNewMacro(Self);
115
117 using InputImageType = TInputImage;
118 using OutputImageType = TOutputImage;
119
121 using InputPixelType = typename InputImageType::PixelType;
122 using OutputPixelType = typename OutputImageType::PixelType;
123
124 using typename Superclass::AccumulatorType;
125
129 itkSetMacro(ForegroundValue, OutputPixelType);
130 itkGetConstMacro(ForegroundValue, OutputPixelType);
135 itkSetMacro(BackgroundValue, OutputPixelType);
136 itkGetConstMacro(BackgroundValue, OutputPixelType);
141 itkSetMacro(ThresholdValue, InputPixelType);
142 itkGetConstMacro(ThresholdValue, InputPixelType);
144 itkConceptMacro(InputPixelTypeGreaterThanComparable, (Concept::GreaterThanComparable<InputPixelType>));
145 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputPixelType>));
146
147protected:
154
156
157 void
158 PrintSelf(std::ostream & os, Indent indent) const override
159 {
160 Superclass::PrintSelf(os, indent);
161
162 using InputPixelPrintType = typename NumericTraits<InputPixelType>::PrintType;
163
164 os << indent << "ForegroundValue: " << static_cast<InputPixelPrintType>(m_ForegroundValue) << std::endl;
165
166 using OutputPixelPrintType = typename NumericTraits<OutputPixelType>::PrintType;
167
168 os << indent << "BackgroundValue: " << static_cast<OutputPixelPrintType>(m_BackgroundValue) << std::endl;
169
170 os << indent << "ThresholdValue: " << static_cast<InputPixelPrintType>(m_ThresholdValue) << std::endl;
171 }
172
174 NewAccumulator(SizeValueType size) const override
175 {
176 AccumulatorType accumulator(size);
177
181 return accumulator;
182 }
183
186
189
192}; // end BinaryThresholdProjectionImageFilter
193} // end namespace itk
194
195#endif
ProjectionImageFilter< TInputImage, TOutputImage, Function::BinaryThresholdAccumulator< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
~BinaryThresholdProjectionImageFilter() override=default
AccumulatorType NewAccumulator(SizeValueType size) const override
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition itkIndent.h:50
static constexpr T NonpositiveMin()
static constexpr T max(const T &)
Implements transparent reference counting.
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86