ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkYenThresholdImageFilter.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 itkYenThresholdImageFilter_h
20 #define itkYenThresholdImageFilter_h
21 
24 
25 namespace itk
26 {
27 
50 template<typename TInputImage, typename TOutputImage, typename TMaskImage=TOutputImage>
52  public HistogramThresholdImageFilter<TInputImage, TOutputImage, TMaskImage>
53 {
54 public:
55  ITK_DISALLOW_COPY_AND_ASSIGN(YenThresholdImageFilter);
56 
59  using Superclass = HistogramThresholdImageFilter<TInputImage,TOutputImage,
60  TMaskImage>;
63 
65  itkNewMacro(Self);
66 
69 
70  using InputImageType = TInputImage;
71  using OutputImageType = TOutputImage;
72  using MaskImageType = TMaskImage;
73 
75  using InputPixelType = typename InputImageType::PixelType;
76  using OutputPixelType = typename OutputImageType::PixelType;
77  using MaskPixelType = typename MaskImageType::PixelType;
78 
80  using InputImagePointer = typename InputImageType::Pointer;
81  using OutputImagePointer = typename OutputImageType::Pointer;
82 
92 
95 
97  static constexpr unsigned int InputImageDimension = InputImageType::ImageDimension;
98  static constexpr unsigned int OutputImageDimension = OutputImageType::ImageDimension;
99 
100 protected:
102  {
104  }
105  ~YenThresholdImageFilter() override = default;
106 };
107 
108 } // end namespace itk
109 
110 #endif
Threshold an image using a HistogramThresholdCalculator.
Threshold an image using the Yen Threshold.
typename OutputImageType::Pointer OutputImagePointer
static constexpr unsigned int OutputImageDimension
typename MaskImageType::SizeType MaskSizeType
This class stores measurement vectors in the context of n-dimensional histogram.
Definition: itkHistogram.h:77
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.
Computes the Yen&#39;s threshold for an image.
~YenThresholdImageFilter() override=default
typename InputImageType::Pointer InputImagePointer
typename OutputImageType::RegionType OutputImageRegionType
typename OutputImageType::SizeType OutputSizeType
static constexpr unsigned int InputImageDimension
TOutputImage OutputImageType
typename MaskImageType::RegionType MaskImageRegionType
typename InputImageType::IndexType InputIndexType
typename MaskImageType::IndexType MaskIndexType
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