ITK  4.2.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 
49 template<class TInputImage, class TOutputImage, class TMaskImage=TOutputImage>
50 class ITK_EXPORT YenThresholdImageFilter :
51  public HistogramThresholdImageFilter<TInputImage, TOutputImage, TMaskImage>
52 {
53 public:
56  typedef HistogramThresholdImageFilter<TInputImage,TOutputImage,
57  TMaskImage> Superclass;
60 
62  itkNewMacro(Self);
63 
66 
67  typedef TInputImage InputImageType;
68  typedef TOutputImage OutputImageType;
69  typedef TMaskImage MaskImageType;
70 
72  typedef typename InputImageType::PixelType InputPixelType;
73  typedef typename OutputImageType::PixelType OutputPixelType;
74  typedef typename MaskImageType::PixelType MaskPixelType;
75 
77  typedef typename InputImageType::Pointer InputImagePointer;
78  typedef typename OutputImageType::Pointer OutputImagePointer;
79 
80  typedef typename InputImageType::SizeType InputSizeType;
81  typedef typename InputImageType::IndexType InputIndexType;
82  typedef typename InputImageType::RegionType InputImageRegionType;
83  typedef typename OutputImageType::SizeType OutputSizeType;
84  typedef typename OutputImageType::IndexType OutputIndexType;
85  typedef typename OutputImageType::RegionType OutputImageRegionType;
86  typedef typename MaskImageType::SizeType MaskSizeType;
87  typedef typename MaskImageType::IndexType MaskIndexType;
88  typedef typename MaskImageType::RegionType MaskImageRegionType;
89 
90  typedef typename Superclass::HistogramType HistogramType;
92 
94  itkStaticConstMacro(InputImageDimension, unsigned int,
95  InputImageType::ImageDimension );
96  itkStaticConstMacro(OutputImageDimension, unsigned int,
97  OutputImageType::ImageDimension );
99 
100 protected:
102  {
103  this->SetCalculator( CalculatorType::New() );
104  }
106 
107 private:
108  YenThresholdImageFilter(const Self&); //purposely not implemented
109  void operator=(const Self&); //purposely not implemented
110 }; // end of class
111 
112 } // end namespace itk
113 
114 #endif
115