ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkMultiLabelSTAPLEImageFilter.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 itkMultiLabelSTAPLEImageFilter_h
19#define itkMultiLabelSTAPLEImageFilter_h
20
21#include "itkImage.h"
23
26
27#include "vector"
28#include "itkArray.h"
29#include "itkArray2D.h"
30#include "itkNumericTraits.h"
31
32namespace itk
33{
109template <typename TInputImage, typename TOutputImage = TInputImage, typename TWeights = float>
110class ITK_TEMPLATE_EXPORT MultiLabelSTAPLEImageFilter : public ImageToImageFilter<TInputImage, TOutputImage>
111{
112public:
113 ITK_DISALLOW_COPY_AND_MOVE(MultiLabelSTAPLEImageFilter);
114
120
122 itkNewMacro(Self);
123
125 itkOverrideGetNameOfClassMacro(MultiLabelSTAPLEImageFilter);
126
129 using OutputPixelType = typename TOutputImage::PixelType;
130 using InputPixelType = typename TInputImage::PixelType;
131
134 static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
135
137 using InputImageType = TInputImage;
138 using OutputImageType = TOutputImage;
139 using InputImagePointer = typename InputImageType::Pointer;
140 using OutputImagePointer = typename OutputImageType::Pointer;
141
144
148
150 using WeightsType = TWeights;
153
155 itkGetConstMacro(ElapsedNumberOfIterations, unsigned int);
156
160 void
161 SetMaximumNumberOfIterations(const unsigned int mit)
162 {
163 this->m_MaximumNumberOfIterations = mit;
165 this->Modified();
166 }
167 itkGetConstMacro(MaximumNumberOfIterations, unsigned int);
169
171 itkGetConstMacro(HasMaximumNumberOfIterations, bool);
172
175 void
177 {
179 {
180 this->m_HasMaximumNumberOfIterations = false;
181 this->Modified();
182 }
183 }
184
188 itkSetMacro(TerminationUpdateThreshold, TWeights);
189 itkGetConstMacro(TerminationUpdateThreshold, TWeights);
191
194 void
196 {
198 this->m_HasLabelForUndecidedPixels = true;
199 this->Modified();
200 }
201
209 itkGetMacro(LabelForUndecidedPixels, OutputPixelType);
210
212 itkGetMacro(HasLabelForUndecidedPixels, bool);
213
216 void
218 {
220 {
221 this->m_HasLabelForUndecidedPixels = false;
222 this->Modified();
223 }
224 }
225
232 void
234 {
235 this->m_PriorProbabilities = ppa;
236 this->m_HasPriorProbabilities = true;
237 this->Modified();
238 }
239
247 itkGetConstReferenceMacro(PriorProbabilities, PriorProbabilitiesType);
248
250 itkGetMacro(HasPriorProbabilities, bool);
251
254 void
256 {
257 if (this->m_HasPriorProbabilities)
258 {
259 this->m_HasPriorProbabilities = false;
260 this->Modified();
261 }
262 }
263
266 const ConfusionMatrixType &
267 GetConfusionMatrix(const unsigned int i) const
268 {
269 return this->m_ConfusionMatrixArray[i];
270 }
271
272protected:
277 ~MultiLabelSTAPLEImageFilter() override = default;
278
279 void
280 GenerateData() override;
281
282 void
283 PrintSelf(std::ostream &, Indent) const override;
284
286 typename TInputImage::PixelType
288
289 // Override since the filter needs all the data for the algorithm
290 void
292
293 // Override since the filter produces all of its output
294 void
296
297private:
298 size_t m_TotalLabelCount{ 0 };
299
302
305
306 void
308
309 std::vector<ConfusionMatrixType> m_ConfusionMatrixArray{};
310 std::vector<ConfusionMatrixType> m_UpdatedConfusionMatrixArray{};
311
312 void
314 void
316
319 unsigned int m_ElapsedNumberOfIterations{ 0u };
320
322};
323
324} // end namespace itk
325
326#ifndef ITK_MANUAL_INSTANTIATION
327# include "itkMultiLabelSTAPLEImageFilter.hxx"
328#endif
329
330#endif
Array2D class representing a 2D array.
Definition itkArray2D.h:43
Array class with size defined at construction time.
Definition itkArray.h:48
Base class for all data objects in ITK.
A multi-dimensional iterator templated over image type that walks a region of pixels.
A multi-dimensional iterator templated over image type that walks a region of pixels.
typename OutputImageType::RegionType OutputImageRegionType
Control indentation during Print() invocation.
Definition itkIndent.h:50
std::vector< ConfusionMatrixType > m_UpdatedConfusionMatrixArray
void PrintSelf(std::ostream &, Indent) const override
const ConfusionMatrixType & GetConfusionMatrix(const unsigned int i) const
void SetMaximumNumberOfIterations(const unsigned int mit)
typename InputImageType::Pointer InputImagePointer
typename OutputImageType::Pointer OutputImagePointer
void SetLabelForUndecidedPixels(const OutputPixelType l)
typename TInputImage::PixelType InputPixelType
~MultiLabelSTAPLEImageFilter() override=default
ImageRegionIterator< TOutputImage > OutputIteratorType
TInputImage::PixelType ComputeMaximumInputValue()
ImageRegionConstIterator< TInputImage > InputConstIteratorType
typename TOutputImage::PixelType OutputPixelType
ImageToImageFilter< TInputImage, TOutputImage > Superclass
void EnlargeOutputRequestedRegion(DataObject *) override
std::vector< ConfusionMatrixType > m_ConfusionMatrixArray
void GenerateInputRequestedRegion() override
void SetPriorProbabilities(const PriorProbabilitiesType &ppa)
virtual void Modified() const
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....