ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkIntermodesThresholdImageFilter.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 itkIntermodesThresholdImageFilter_h
20 #define itkIntermodesThresholdImageFilter_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:
61 
63  itkNewMacro(Self);
64 
67 
68  typedef TInputImage InputImageType;
69  typedef TOutputImage OutputImageType;
70  typedef TMaskImage MaskImageType;
71 
73  typedef typename InputImageType::PixelType InputPixelType;
74  typedef typename OutputImageType::PixelType OutputPixelType;
75  typedef typename MaskImageType::PixelType MaskPixelType;
76 
78  typedef typename InputImageType::Pointer InputImagePointer;
79  typedef typename OutputImageType::Pointer OutputImagePointer;
80 
83  typedef typename InputImageType::RegionType InputImageRegionType;
86  typedef typename OutputImageType::RegionType OutputImageRegionType;
89  typedef typename MaskImageType::RegionType MaskImageRegionType;
90 
93 
94  void SetMaximumSmoothingIterations(SizeValueType maxSmoothingIterations)
95  {
96  m_IntermodesCalculator->SetMaximumSmoothingIterations(maxSmoothingIterations);
97  }
98 
100  {
101  return(m_IntermodesCalculator->GetMaximumSmoothingIterations());
102  }
103 
106  void SetUseInterMode(bool useIntermode)
107  {
108  m_IntermodesCalculator->SetUseInterMode(useIntermode);
109  }
110 
112  {
113  return(m_IntermodesCalculator->GetUseInterMode());
114  }
115 
117  itkStaticConstMacro(InputImageDimension, unsigned int,
118  InputImageType::ImageDimension );
119  itkStaticConstMacro(OutputImageDimension, unsigned int,
120  OutputImageType::ImageDimension );
122 
123 protected:
124 
126  {
129  m_IntermodesCalculator->SetMaximumSmoothingIterations(10000);
130  m_IntermodesCalculator->SetUseInterMode(true);
131  }
133 
134  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE
135  {
136  Superclass::PrintSelf(os, indent);
137 
138  itkPrintSelfObjectMacro( IntermodesCalculator );
139  }
140 
141 private:
142  ITK_DISALLOW_COPY_AND_ASSIGN(IntermodesThresholdImageFilter);
143 
145 
146 };
147 
148 } // end namespace itk
149 
150 #endif
Threshold an image using a HistogramThresholdCalculator.
Statistics::Histogram< ValueRealType > HistogramType
void SetMaximumSmoothingIterations(SizeValueType maxSmoothingIterations)
virtual void SetCalculator(CalculatorType *_arg)
Computes the Intermodes&#39;s threshold for an image.
Base class for all process objects that output image data.
unsigned long SizeValueType
Definition: itkIntTypes.h:143
HistogramThresholdImageFilter< TInputImage, TOutputImage, TMaskImage > Superclass
Threshold an image using the Intermodes Threshold.
IntermodesThresholdCalculator< HistogramType, InputPixelType > CalculatorType
void PrintSelf(std::ostream &os, Indent indent) const override
Control indentation during Print() invocation.
Definition: itkIndent.h:49
void PrintSelf(std::ostream &os, Indent indent) const override