SimpleITK  1.0.1
sitkOtsuMultipleThresholdsImageFilter.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 #ifndef sitkOtsuMultipleThresholdsImageFilter_h
19 #define sitkOtsuMultipleThresholdsImageFilter_h
20 
21 /*
22  * WARNING: DO NOT EDIT THIS FILE!
23  * THIS FILE IS AUTOMATICALLY GENERATED BY THE SIMPLEITK BUILD PROCESS.
24  * Please look at sitkImageFilterTemplate.h.in to make changes.
25  */
26 
27 #include <memory>
28 
29 #include "sitkBasicFilters.h"
30 #include "sitkImageFilter.h"
31 
32 namespace itk {
33  namespace simple {
34 
51  public:
53 
57 
60 
63 
64 
65 
69  SITK_RETURN_SELF_TYPE_HEADER SetNumberOfThresholds ( uint8_t NumberOfThresholds ) { this->m_NumberOfThresholds = NumberOfThresholds; return *this; }
70 
74  uint8_t GetNumberOfThresholds() const { return this->m_NumberOfThresholds; }
75 
79  SITK_RETURN_SELF_TYPE_HEADER SetLabelOffset ( uint8_t LabelOffset ) { this->m_LabelOffset = LabelOffset; return *this; }
80 
84  uint8_t GetLabelOffset() const { return this->m_LabelOffset; }
85 
89  SITK_RETURN_SELF_TYPE_HEADER SetNumberOfHistogramBins ( uint32_t NumberOfHistogramBins ) { this->m_NumberOfHistogramBins = NumberOfHistogramBins; return *this; }
90 
94  uint32_t GetNumberOfHistogramBins() const { return this->m_NumberOfHistogramBins; }
95 
99  SITK_RETURN_SELF_TYPE_HEADER SetValleyEmphasis ( bool ValleyEmphasis ) { this->m_ValleyEmphasis = ValleyEmphasis; return *this; }
100 
102  SITK_RETURN_SELF_TYPE_HEADER ValleyEmphasisOn() { return this->SetValleyEmphasis(true); }
103  SITK_RETURN_SELF_TYPE_HEADER ValleyEmphasisOff() { return this->SetValleyEmphasis(false); }
104 
108  bool GetValleyEmphasis() const { return this->m_ValleyEmphasis; }
115  std::vector<double> GetThresholds() const { return this->m_Thresholds; };
116 
118  std::string GetName() const { return std::string ("OtsuMultipleThresholdsImageFilter"); }
119 
121  std::string ToString() const;
122 
123 
125  Image Execute ( const Image& image1 );
126 
127 
129  Image Execute ( const Image& image1, uint8_t numberOfThresholds, uint8_t labelOffset, uint32_t numberOfHistogramBins, bool valleyEmphasis );
130 
131 
132  private:
133 
136  typedef Image (Self::*MemberFunctionType)( const Image& image1 );
137  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
138 
139 
140 
141  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
142 
143  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
144 
145 
149  /* */
151 
152  std::vector<double> m_Thresholds;
153 
154  };
155 
156 
157 
166  SITKBasicFilters_EXPORT Image OtsuMultipleThresholds ( const Image& image1, uint8_t numberOfThresholds = 1u, uint8_t labelOffset = 0u, uint32_t numberOfHistogramBins = 128u, bool valleyEmphasis = false );
167 
168  }
169 }
170 #endif
#define SITKBasicFilters_EXPORT
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > >::Type BasicPixelIDTypeList
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
::uint8_t uint8_t
Image OtsuMultipleThresholds(const Image &image1, uint8_t numberOfThresholds=1u, uint8_t labelOffset=0u, uint32_t numberOfHistogramBins=128u, bool valleyEmphasis=false)
Threshold an image using multiple Otsu Thresholds.
::uint32_t uint32_t
The main Image class for SimpleITK.
Definition: sitkImage.h:54
Threshold an image using multiple Otsu Thresholds.
The base interface for SimpleITK filters that take one input image.