SimpleITK  1.0.1
sitkMultiLabelSTAPLEImageFilter.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 sitkMultiLabelSTAPLEImageFilter_h
19 #define sitkMultiLabelSTAPLEImageFilter_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 sitkMultiInputImageFilterTemplate.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 
77  : public ImageFilter<3>
78  {
79  public:
81 
85 
88 
91 
92 
93 
94 
98  SITK_RETURN_SELF_TYPE_HEADER SetLabelForUndecidedPixels ( uint64_t LabelForUndecidedPixels ) { this->m_LabelForUndecidedPixels = LabelForUndecidedPixels; return *this; }
99 
105  uint64_t GetLabelForUndecidedPixels() const { return this->m_LabelForUndecidedPixels; }
106 
110  SITK_RETURN_SELF_TYPE_HEADER SetTerminationUpdateThreshold ( float TerminationUpdateThreshold ) { this->m_TerminationUpdateThreshold = TerminationUpdateThreshold; return *this; }
111 
115  float GetTerminationUpdateThreshold() const { return this->m_TerminationUpdateThreshold; }
116 
120  SITK_RETURN_SELF_TYPE_HEADER SetMaximumNumberOfIterations ( unsigned int MaximumNumberOfIterations ) { this->m_MaximumNumberOfIterations = MaximumNumberOfIterations; return *this; }
121 
125  unsigned int GetMaximumNumberOfIterations() const { return this->m_MaximumNumberOfIterations; }
126 
132  SITK_RETURN_SELF_TYPE_HEADER SetPriorProbabilities ( std::vector<float> PriorProbabilities ) { this->m_PriorProbabilities = PriorProbabilities; return *this; }
133 
139  std::vector<float> GetPriorProbabilities() const { return this->m_PriorProbabilities; }
147  std::vector<float> GetConfusionMatrix(unsigned int input) const { return this->m_pfGetConfusionMatrix(input); };
148 
150  std::string GetName() const { return std::string ("MultiLabelSTAPLEImageFilter"); }
151 
153  std::string ToString() const;
154 
156  Image Execute ( const std::vector<Image> &images);
157  Image Execute ( const Image& image1 );
158  Image Execute ( const Image& image1, const Image& image2 );
159  Image Execute ( const Image& image1, const Image& image2, const Image& image3 );
160  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4 );
161  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5 );
162 
163 
164 
166  Image Execute ( const std::vector<Image> &images, uint64_t labelForUndecidedPixels, float terminationUpdateThreshold, unsigned int maximumNumberOfIterations, std::vector<float> priorProbabilities );
167  Image Execute ( const Image& image1, uint64_t labelForUndecidedPixels, float terminationUpdateThreshold, unsigned int maximumNumberOfIterations, std::vector<float> priorProbabilities );
168  Image Execute ( const Image& image1, const Image& image2, uint64_t labelForUndecidedPixels, float terminationUpdateThreshold, unsigned int maximumNumberOfIterations, std::vector<float> priorProbabilities );
169  Image Execute ( const Image& image1, const Image& image2, const Image& image3, uint64_t labelForUndecidedPixels, float terminationUpdateThreshold, unsigned int maximumNumberOfIterations, std::vector<float> priorProbabilities );
170  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, uint64_t labelForUndecidedPixels, float terminationUpdateThreshold, unsigned int maximumNumberOfIterations, std::vector<float> priorProbabilities );
171  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5, uint64_t labelForUndecidedPixels, float terminationUpdateThreshold, unsigned int maximumNumberOfIterations, std::vector<float> priorProbabilities );
172 
173 
174 
175 
176  private:
177 
180  typedef Image (Self::*MemberFunctionType)( const std::vector<Image> & );
181  template <class TImageType> Image ExecuteInternal ( const std::vector<Image> &images );
182 
183 
184 
185  friend struct detail::MemberFunctionAddressor<MemberFunctionType>;
186 
187  nsstd::auto_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
188 
189 
193  std::vector<float> m_PriorProbabilities;
194 
195  nsstd::function<std::vector<float>(unsigned int)> m_pfGetConfusionMatrix;
196 
197  // Holder of process object for active measurements
199  };
200 
201 
211  SITKBasicFilters_EXPORT Image MultiLabelSTAPLE ( const std::vector<Image> &images , uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max(), float terminationUpdateThreshold = 1e-5f, unsigned int maximumNumberOfIterations = std::numeric_limits<unsigned int>::max(), std::vector<float> priorProbabilities = std::vector<float>() );
212 
213  SITKBasicFilters_EXPORT Image MultiLabelSTAPLE ( const Image& image1, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max(), float terminationUpdateThreshold = 1e-5f, unsigned int maximumNumberOfIterations = std::numeric_limits<unsigned int>::max(), std::vector<float> priorProbabilities = std::vector<float>() );
214  SITKBasicFilters_EXPORT Image MultiLabelSTAPLE ( const Image& image1, const Image& image2, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max(), float terminationUpdateThreshold = 1e-5f, unsigned int maximumNumberOfIterations = std::numeric_limits<unsigned int>::max(), std::vector<float> priorProbabilities = std::vector<float>() );
215  SITKBasicFilters_EXPORT Image MultiLabelSTAPLE ( const Image& image1, const Image& image2, const Image& image3, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max(), float terminationUpdateThreshold = 1e-5f, unsigned int maximumNumberOfIterations = std::numeric_limits<unsigned int>::max(), std::vector<float> priorProbabilities = std::vector<float>() );
216  SITKBasicFilters_EXPORT Image MultiLabelSTAPLE ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max(), float terminationUpdateThreshold = 1e-5f, unsigned int maximumNumberOfIterations = std::numeric_limits<unsigned int>::max(), std::vector<float> priorProbabilities = std::vector<float>() );
217  SITKBasicFilters_EXPORT Image MultiLabelSTAPLE ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max(), float terminationUpdateThreshold = 1e-5f, unsigned int maximumNumberOfIterations = std::numeric_limits<unsigned int>::max(), std::vector<float> priorProbabilities = std::vector<float>() );
218 
221 }
222 }
223 #endif
typelist::MakeTypeList< BasicPixelID< uint8_t >, BasicPixelID< uint16_t >, BasicPixelID< uint32_t > >::Type UnsignedIntegerPixelIDTypeList
#define SITKBasicFilters_EXPORT
Image MultiLabelSTAPLE(const std::vector< Image > &images, uint64_t labelForUndecidedPixels=std::numeric_limits< uint64_t >::max(), float terminationUpdateThreshold=1e-5f, unsigned int maximumNumberOfIterations=std::numeric_limits< unsigned int >::max(), std::vector< float > priorProbabilities=std::vector< float >())
This filter performs a pixelwise combination of an arbitrary number of input images, where each of them represents a segmentation of the same scene (i.e., image).
Self & SetLabelForUndecidedPixels(uint64_t LabelForUndecidedPixels)
Self & SetPriorProbabilities(std::vector< float > PriorProbabilities)
The main Image class for SimpleITK.
Definition: sitkImage.h:54
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Self & SetTerminationUpdateThreshold(float TerminationUpdateThreshold)
Self & SetMaximumNumberOfIterations(unsigned int MaximumNumberOfIterations)
This filter performs a pixelwise combination of an arbitrary number of input images, where each of them represents a segmentation of the same scene (i.e., image).
::uint64_t uint64_t
The base interface for SimpleITK filters that take one input image.
std::vector< float > GetConfusionMatrix(unsigned int input) const