ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBinaryProjectionImageFilter.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 itkBinaryProjectionImageFilter_h
19#define itkBinaryProjectionImageFilter_h
20
22#include "itkConceptChecking.h"
23
24namespace itk
25{
45
46namespace Functor
47{
48template <typename TInputPixel, typename TOutputPixel>
50{
51public:
53 ~BinaryAccumulator() = default;
54
55 inline void
57 {
58 m_IsForeground = false;
59 }
60
61 inline void
62 operator()(const TInputPixel & input)
63 {
64 if (input == m_ForegroundValue)
65 {
66 m_IsForeground = true;
67 }
68 }
69
70 inline TOutputPixel
72 {
74 {
75 return (TOutputPixel)m_ForegroundValue;
76 }
77
78 return m_BackgroundValue;
79 }
80
82
83 TInputPixel m_ForegroundValue;
84
85 TOutputPixel m_BackgroundValue;
86};
87} // namespace Functor
88
89template <typename TInputImage, typename TOutputImage>
91 : public ProjectionImageFilter<
92 TInputImage,
93 TOutputImage,
94 Functor::BinaryAccumulator<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
95{
96public:
97 ITK_DISALLOW_COPY_AND_MOVE(BinaryProjectionImageFilter);
98
101 TInputImage,
102 TOutputImage,
104
107
109 itkOverrideGetNameOfClassMacro(BinaryProjectionImageFilter);
110
112 itkNewMacro(Self);
113
115 using InputImageType = TInputImage;
116 using OutputImageType = TOutputImage;
117
119 using InputPixelType = typename InputImageType::PixelType;
120 using OutputPixelType = typename OutputImageType::PixelType;
121
122 using typename Superclass::AccumulatorType;
123
127 itkSetMacro(ForegroundValue, InputPixelType);
128
131 itkGetConstMacro(ForegroundValue, InputPixelType);
132
137 itkSetMacro(BackgroundValue, OutputPixelType);
138
143 itkGetConstMacro(BackgroundValue, OutputPixelType);
144
145 itkConceptMacro(InputPixelTypeGreaterThanComparable, (Concept::EqualityComparable<InputPixelType>));
146 itkConceptMacro(InputHasNumericTraitsCheck, (Concept::HasNumericTraits<InputPixelType>));
147
148protected:
154
155 ~BinaryProjectionImageFilter() override = default;
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
172 NewAccumulator(SizeValueType size) const override
173 {
174 AccumulatorType accumulator(size);
175
178 return accumulator;
179 }
180
183
186}; // end BinaryProjectionImageFilter
187} // end namespace itk
188
189#endif
typename OutputImageType::PixelType OutputPixelType
Functor::BinaryAccumulator< typename TInputImage::PixelType, typename TOutputImage::PixelType > AccumulatorType
~BinaryProjectionImageFilter() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
AccumulatorType NewAccumulator(SizeValueType size) const override
ProjectionImageFilter< TInputImage, TOutputImage, Functor::BinaryAccumulator< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
typename InputImageType::PixelType InputPixelType
void operator()(const TInputPixel &input)
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