ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkThresholdLabelerImageFilter.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 itkThresholdLabelerImageFilter_h
19#define itkThresholdLabelerImageFilter_h
20
22#include "itkConceptChecking.h"
23
24namespace itk
25{
43namespace Functor
44{
45template <typename TInput, typename TOutput>
46class ITK_TEMPLATE_EXPORT ThresholdLabeler
47{
48public:
50 ~ThresholdLabeler() = default;
51
53 using RealThresholdVector = std::vector<RealThresholdType>;
54
56 void
58 {
59 m_Thresholds = thresholds;
60 }
61
63 void
64 SetLabelOffset(const TOutput & labelOffset)
65 {
66 m_LabelOffset = labelOffset;
67 }
68
69
70 bool
71 operator==(const ThresholdLabeler & other) const
72 {
73 return m_Thresholds == other.m_Thresholds && m_LabelOffset == other.m_LabelOffset;
74 }
75
77
78 inline TOutput
79 operator()(const TInput & A) const
80 {
81 // When there are N thresholds, they divide values into N+1 buckets, which we number
82 // 0, ..., N. Each bucket represents a half-open interval of values (A, B]. The
83 // variables low, mid, and high refer to buckets. The inclusive range [low, high]
84 // are the buckets that are not yet ruled out. We repeatedly bisect this range
85 // using the variable `mid`. In the case of ties, this method returns the lowest
86 // bucket index for which `A` is less than or equal to the bucket's upper limit.
87 size_t low = 0;
88 size_t high = m_Thresholds.size();
89 while (low < high)
90 {
91 const size_t mid = (low + high) / 2;
92 if (A <= m_Thresholds[mid])
93 {
94 high = mid;
95 }
96 else
97 {
98 low = mid + 1;
99 }
100 }
101 // The computed bucket index is relative to m_LabelOffset.
102 return static_cast<TOutput>(low) + m_LabelOffset;
103 }
104
105private:
108};
109} // namespace Functor
110
111template <typename TInputImage, typename TOutputImage>
112class ITK_TEMPLATE_EXPORT ThresholdLabelerImageFilter
114 TInputImage,
115 TOutputImage,
116 Functor::ThresholdLabeler<typename TInputImage::PixelType, typename TOutputImage::PixelType>>
117{
118public:
119 ITK_DISALLOW_COPY_AND_MOVE(ThresholdLabelerImageFilter);
120
124 TInputImage,
125 TOutputImage,
127
130
132 itkNewMacro(Self);
133
135 itkOverrideGetNameOfClassMacro(ThresholdLabelerImageFilter);
136
138 using InputPixelType = typename TInputImage::PixelType;
139 using OutputPixelType = typename TOutputImage::PixelType;
140
142 using ThresholdVector = std::vector<InputPixelType>;
144 using RealThresholdVector = std::vector<RealThresholdType>;
145
149 itkConceptMacro(OutputPixelTypeComparable, (Concept::Comparable<OutputPixelType>));
150 itkConceptMacro(OutputPixelTypeOStreamWritable, (Concept::OStreamWritable<OutputPixelType>));
153 void
154 SetThresholds(const ThresholdVector & thresholds)
155 {
156 m_Thresholds = thresholds;
157 m_RealThresholds.clear();
158 auto itr = m_Thresholds.begin();
159 while (itr != m_Thresholds.end())
160 {
161 m_RealThresholds.push_back(static_cast<RealThresholdType>(*itr));
162 ++itr;
163 }
164 this->Modified();
165 }
166
168 const ThresholdVector &
170 {
171 return m_Thresholds;
172 }
173
175 void
177 {
178 m_RealThresholds = thresholds;
179 m_Thresholds.clear();
180 auto itr = m_RealThresholds.begin();
181 while (itr != m_RealThresholds.end())
182 {
183 m_Thresholds.push_back(static_cast<InputPixelType>(*itr));
184 ++itr;
185 }
186 this->Modified();
187 }
188
190 const RealThresholdVector &
192 {
193 return m_RealThresholds;
194 }
195
199 itkGetConstMacro(LabelOffset, OutputPixelType);
201protected:
203 ~ThresholdLabelerImageFilter() override = default;
204 void
205 PrintSelf(std::ostream & os, Indent indent) const override;
206
209 void
211
212private:
216};
217} // end namespace itk
218
219#ifndef ITK_MANUAL_INSTANTIATION
220# include "itkThresholdLabelerImageFilter.hxx"
221#endif
222
223#endif
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(ThresholdLabeler)
void SetThresholds(const RealThresholdVector &thresholds)
bool operator==(const ThresholdLabeler &other) const
std::vector< RealThresholdType > RealThresholdVector
void SetLabelOffset(const TOutput &labelOffset)
TOutput operator()(const TInput &A) const
typename NumericTraits< TInput >::RealType RealThresholdType
Control indentation during Print() invocation.
Definition itkIndent.h:50
static constexpr T max(const T &)
virtual void Modified() const
Implements transparent reference counting.
void BeforeThreadedGenerateData() override
typename NumericTraits< InputPixelType >::RealType RealThresholdType
UnaryFunctorImageFilter< TInputImage, TOutputImage, Functor::ThresholdLabeler< typename TInputImage::PixelType, typename TOutputImage::PixelType > > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
void SetThresholds(const ThresholdVector &thresholds)
std::vector< RealThresholdType > RealThresholdVector
const RealThresholdVector & GetRealThresholds() const
const ThresholdVector & GetThresholds() const
void SetRealThresholds(const RealThresholdVector &thresholds)
~ThresholdLabelerImageFilter() override=default
typename TOutputImage::PixelType OutputPixelType
typename TInputImage::PixelType InputPixelType
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....