ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkKittlerIllingworthThresholdImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 
19 #ifndef itkKittlerIllingworthThresholdImageFilter_h
20 #define itkKittlerIllingworthThresholdImageFilter_h
21 
24 
25 namespace itk
26 {
27 
51 template<typename TInputImage, typename TOutputImage, typename TMaskImage=TOutputImage>
53  public HistogramThresholdImageFilter<TInputImage, TOutputImage, TMaskImage>
54 {
55 public:
56  ITK_DISALLOW_COPY_AND_ASSIGN(KittlerIllingworthThresholdImageFilter);
57 
60  using Superclass = HistogramThresholdImageFilter<TInputImage,TOutputImage,
61  TMaskImage>;
64 
66  itkNewMacro(Self);
67 
70 
71  using InputImageType = TInputImage;
72  using OutputImageType = TOutputImage;
73  using MaskImageType = TMaskImage;
74 
76  using InputPixelType = typename InputImageType::PixelType;
77  using OutputPixelType = typename OutputImageType::PixelType;
78  using MaskPixelType = typename MaskImageType::PixelType;
79 
81  using InputImagePointer = typename InputImageType::Pointer;
82  using OutputImagePointer = typename OutputImageType::Pointer;
83 
93 
96 
98  static constexpr unsigned int InputImageDimension = InputImageType::ImageDimension;
99  static constexpr unsigned int OutputImageDimension = OutputImageType::ImageDimension;
100 
101 protected:
103  {
105  }
106  ~KittlerIllingworthThresholdImageFilter() override = default;
107 };
108 
109 } // end namespace itk
110 
111 #endif
Threshold an image using a HistogramThresholdCalculator.
Threshold an image using the KittlerIllingworth Threshold.
typename OutputImageType::Pointer OutputImagePointer
typename MaskImageType::SizeType MaskSizeType
This class stores measurement vectors in the context of n-dimensional histogram.
Definition: itkHistogram.h:77
Computes the KittlerIllingworth&#39;s threshold for an image.
virtual void SetCalculator(CalculatorType *_arg)
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
typename MaskImageType::PixelType MaskPixelType
typename InputImageType::SizeType InputSizeType
Base class for all process objects that output image data.
typename InputImageType::Pointer InputImagePointer
typename OutputImageType::RegionType OutputImageRegionType
typename OutputImageType::SizeType OutputSizeType
TOutputImage OutputImageType
typename MaskImageType::RegionType MaskImageRegionType
typename InputImageType::IndexType InputIndexType
typename MaskImageType::IndexType MaskIndexType
~KittlerIllingworthThresholdImageFilter() override=default
typename InputImageType::RegionType InputImageRegionType
Statistics::Histogram< ValueRealType > HistogramType
Base class to compute a threshold value based on the histogram of an image.
typename OutputImageType::PixelType OutputPixelType
typename OutputImageType::IndexType OutputIndexType
typename InputImageType::PixelType InputPixelType