SimpleITK  1.1.0
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 
56 
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  private:
132 
135  typedef Image (Self::*MemberFunctionType)( const Image& image1 );
136  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
137 
138 
139  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
140 
141  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
142 
143 
147  /* */
149 
150  std::vector<double> m_Thresholds;
151 
152  };
153 
154 
163  SITKBasicFilters_EXPORT Image OtsuMultipleThresholds ( const Image& image1, uint8_t numberOfThresholds = 1u, uint8_t labelOffset = 0u, uint32_t numberOfHistogramBins = 128u, bool valleyEmphasis = false );
164 
165  }
166 }
167 #endif
itk::simple::Image
The main Image class for SimpleITK.
Definition: sitkImage.h:54
sitkBasicFilters.h
itk::uint8_t
::uint8_t uint8_t
itk::simple::OtsuMultipleThresholdsImageFilter::GetNumberOfThresholds
uint8_t GetNumberOfThresholds() const
Definition: sitkOtsuMultipleThresholdsImageFilter.h:74
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::OtsuMultipleThresholdsImageFilter
Threshold an image using multiple Otsu Thresholds.
Definition: sitkOtsuMultipleThresholdsImageFilter.h:50
itk::simple::OtsuMultipleThresholdsImageFilter::m_ValleyEmphasis
bool m_ValleyEmphasis
Definition: sitkOtsuMultipleThresholdsImageFilter.h:148
itk::simple::OtsuMultipleThresholdsImageFilter::SetValleyEmphasis
Self & SetValleyEmphasis(bool ValleyEmphasis)
Definition: sitkOtsuMultipleThresholdsImageFilter.h:99
itk::simple::OtsuMultipleThresholdsImageFilter::m_NumberOfThresholds
uint8_t m_NumberOfThresholds
Definition: sitkOtsuMultipleThresholdsImageFilter.h:144
itk::simple::OtsuMultipleThresholdsImageFilter::GetLabelOffset
uint8_t GetLabelOffset() const
Definition: sitkOtsuMultipleThresholdsImageFilter.h:84
itk::simple::OtsuMultipleThresholdsImageFilter::PixelIDTypeList
BasicPixelIDTypeList PixelIDTypeList
Definition: sitkOtsuMultipleThresholdsImageFilter.h:62
itk::simple::BasicPixelIDTypeList
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
Definition: sitkPixelIDTypeLists.h:53
sitkImageFilter.h
itk::simple::OtsuMultipleThresholds
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.
itk::simple::OtsuMultipleThresholdsImageFilter::m_LabelOffset
uint8_t m_LabelOffset
Definition: sitkOtsuMultipleThresholdsImageFilter.h:145
itk::simple::OtsuMultipleThresholdsImageFilter::m_NumberOfHistogramBins
uint32_t m_NumberOfHistogramBins
Definition: sitkOtsuMultipleThresholdsImageFilter.h:146
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:50
itk::simple::OtsuMultipleThresholdsImageFilter::SetLabelOffset
Self & SetLabelOffset(uint8_t LabelOffset)
Definition: sitkOtsuMultipleThresholdsImageFilter.h:79
itk::simple::OtsuMultipleThresholdsImageFilter::SetNumberOfHistogramBins
Self & SetNumberOfHistogramBins(uint32_t NumberOfHistogramBins)
Definition: sitkOtsuMultipleThresholdsImageFilter.h:89
itk::simple::OtsuMultipleThresholdsImageFilter::GetNumberOfHistogramBins
uint32_t GetNumberOfHistogramBins() const
Definition: sitkOtsuMultipleThresholdsImageFilter.h:94
itk
itk::simple::OtsuMultipleThresholdsImageFilter::GetName
std::string GetName() const
Definition: sitkOtsuMultipleThresholdsImageFilter.h:118
itk::simple::OtsuMultipleThresholdsImageFilter::Self
OtsuMultipleThresholdsImageFilter Self
Definition: sitkOtsuMultipleThresholdsImageFilter.h:52
itk::simple::OtsuMultipleThresholdsImageFilter::m_MemberFactory
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkOtsuMultipleThresholdsImageFilter.h:141
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:37
itk::simple::ProcessObject
Base class for SimpleITK classes based on ProcessObject.
Definition: sitkProcessObject.h:50
itk::simple::OtsuMultipleThresholdsImageFilter::ValleyEmphasisOff
Self & ValleyEmphasisOff()
Definition: sitkOtsuMultipleThresholdsImageFilter.h:103
itk::simple::OtsuMultipleThresholdsImageFilter::ValleyEmphasisOn
Self & ValleyEmphasisOn()
Definition: sitkOtsuMultipleThresholdsImageFilter.h:102
itk::simple::OtsuMultipleThresholdsImageFilter::m_Thresholds
std::vector< double > m_Thresholds
Definition: sitkOtsuMultipleThresholdsImageFilter.h:150
itk::simple::OtsuMultipleThresholdsImageFilter::GetThresholds
std::vector< double > GetThresholds() const
Definition: sitkOtsuMultipleThresholdsImageFilter.h:115
itk::uint32_t
::uint32_t uint32_t
itk::simple::OtsuMultipleThresholdsImageFilter::GetValleyEmphasis
bool GetValleyEmphasis() const
Definition: sitkOtsuMultipleThresholdsImageFilter.h:108
itk::simple::OtsuMultipleThresholdsImageFilter::SetNumberOfThresholds
Self & SetNumberOfThresholds(uint8_t NumberOfThresholds)
Definition: sitkOtsuMultipleThresholdsImageFilter.h:69