SimpleITK  1.1.0
sitkStatisticsImageFilter.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 sitkStatisticsImageFilter_h
19 #define sitkStatisticsImageFilter_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 
55  virtual ~StatisticsImageFilter();
56 
60 
63 
64 
71  double GetMinimum() const { return this->m_Minimum; };
72 
79  double GetMaximum() const { return this->m_Maximum; };
80 
87  double GetMean() const { return this->m_Mean; };
88 
95  double GetSigma() const { return this->m_Sigma; };
96 
103  double GetVariance() const { return this->m_Variance; };
104 
111  double GetSum() const { return this->m_Sum; };
112 
114  std::string GetName() const { return std::string ("StatisticsImageFilter"); }
115 
117  std::string ToString() const;
118 
119 
121  void Execute ( const Image& image1 );
122 
123 
124  private:
125 
128  typedef void (Self::*MemberFunctionType)( const Image& image1 );
129  template <class TImageType> void ExecuteInternal ( const Image& image1 );
130 
131 
132  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
133 
134  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
135 
136 
137  /* Docs */
138  double m_Minimum;
139  /* Docs */
140  double m_Maximum;
141  /* Docs */
142  double m_Mean;
143  /* Docs */
144  double m_Sigma;
145  /* Docs */
146  double m_Variance;
147  /* Docs */
148  double m_Sum;
149 
150  };
151 
152 
153  }
154 }
155 #endif
itk::simple::Image
The main Image class for SimpleITK.
Definition: sitkImage.h:54
itk::simple::StatisticsImageFilter::m_MemberFactory
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkStatisticsImageFilter.h:134
itk::simple::StatisticsImageFilter::m_Sigma
double m_Sigma
Definition: sitkStatisticsImageFilter.h:144
itk::simple::StatisticsImageFilter::m_Minimum
double m_Minimum
Definition: sitkStatisticsImageFilter.h:138
sitkBasicFilters.h
itk::simple::StatisticsImageFilter::PixelIDTypeList
BasicPixelIDTypeList PixelIDTypeList
Definition: sitkStatisticsImageFilter.h:62
itk::simple::StatisticsImageFilter::GetMean
double GetMean() const
Definition: sitkStatisticsImageFilter.h:87
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::StatisticsImageFilter
Compute min. max, variance and mean of an Image .
Definition: sitkStatisticsImageFilter.h:50
itk::simple::StatisticsImageFilter::m_Mean
double m_Mean
Definition: sitkStatisticsImageFilter.h:142
itk::simple::StatisticsImageFilter::GetMinimum
double GetMinimum() const
Definition: sitkStatisticsImageFilter.h:71
itk::simple::StatisticsImageFilter::m_Sum
double m_Sum
Definition: sitkStatisticsImageFilter.h:148
itk::simple::StatisticsImageFilter::m_Variance
double m_Variance
Definition: sitkStatisticsImageFilter.h:146
itk::simple::StatisticsImageFilter::GetName
std::string GetName() const
Definition: sitkStatisticsImageFilter.h:114
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::StatisticsImageFilter::GetMaximum
double GetMaximum() const
Definition: sitkStatisticsImageFilter.h:79
itk::simple::StatisticsImageFilter::GetVariance
double GetVariance() const
Definition: sitkStatisticsImageFilter.h:103
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:50
itk::simple::StatisticsImageFilter::m_Maximum
double m_Maximum
Definition: sitkStatisticsImageFilter.h:140
itk::simple::StatisticsImageFilter::GetSum
double GetSum() const
Definition: sitkStatisticsImageFilter.h:111
itk::simple::StatisticsImageFilter::GetSigma
double GetSigma() const
Definition: sitkStatisticsImageFilter.h:95
itk
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::StatisticsImageFilter::Self
StatisticsImageFilter Self
Definition: sitkStatisticsImageFilter.h:52