SimpleITK  2.0.0
sitkMultiLabelSTAPLEImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 *
3 * Copyright NumFOCUS
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 
81  : public ImageFilter
82  {
83  public:
85 
87  virtual ~MultiLabelSTAPLEImageFilter();
88 
89 
93 
96 
97 
98 \
99 
103  SITK_RETURN_SELF_TYPE_HEADER SetLabelForUndecidedPixels ( uint64_t LabelForUndecidedPixels ) { this->m_LabelForUndecidedPixels = LabelForUndecidedPixels; return *this; }
104 
110  uint64_t GetLabelForUndecidedPixels() const { return this->m_LabelForUndecidedPixels; }\
111 
115  SITK_RETURN_SELF_TYPE_HEADER SetTerminationUpdateThreshold ( float TerminationUpdateThreshold ) { this->m_TerminationUpdateThreshold = TerminationUpdateThreshold; return *this; }
116 
120  float GetTerminationUpdateThreshold() const { return this->m_TerminationUpdateThreshold; }\
121 
125  SITK_RETURN_SELF_TYPE_HEADER SetMaximumNumberOfIterations ( unsigned int MaximumNumberOfIterations ) { this->m_MaximumNumberOfIterations = MaximumNumberOfIterations; return *this; }
126 
130  unsigned int GetMaximumNumberOfIterations() const { return this->m_MaximumNumberOfIterations; }\
131 
137  SITK_RETURN_SELF_TYPE_HEADER SetPriorProbabilities ( std::vector<float> PriorProbabilities ) { this->m_PriorProbabilities = PriorProbabilities; return *this; }
138 
144  std::vector<float> GetPriorProbabilities() const { return this->m_PriorProbabilities; }
152  std::vector<float> GetConfusionMatrix(unsigned int input) const { return this->m_pfGetConfusionMatrix(input); };
153 
154 
156  std::string GetName() const { return std::string ("MultiLabelSTAPLEImageFilter"); }
157 
159  std::string ToString() const;
160 
162  Image Execute ( const std::vector<Image> &images);
163  Image Execute ( const Image& image1 );
164  Image Execute ( const Image& image1, const Image& image2 );
165  Image Execute ( const Image& image1, const Image& image2, const Image& image3 );
166  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4 );
167  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5 );
168 
169 
170 
171 
172  private:
173 
176  using MemberFunctionType = Image (Self::*)( const std::vector<Image> & );
177  template <class TImageType> Image ExecuteInternal ( const std::vector<Image> &images );
178 
179 
180 
182 
183  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
184 
185 
186  uint64_t m_LabelForUndecidedPixels{std::numeric_limits<uint64_t>::max()};
187 
188  float m_TerminationUpdateThreshold{1e-5f};
189 
190  unsigned int m_MaximumNumberOfIterations{std::numeric_limits<unsigned int>::max()};
191 
192  std::vector<float> m_PriorProbabilities{std::vector<float>()};
193 
194 
195  std::function<std::vector<float>(unsigned int)> m_pfGetConfusionMatrix;
196 
197  // Holder of process object for active measurements
198  itk::ProcessObject *m_Filter{nullptr};
199 
200  };
201 
202 
212  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>() );
213 
214  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>() );
215  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>() );
216  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>() );
217  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>() );
218  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>() );
219 
222 }
223 }
224 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
itk::simple::MultiLabelSTAPLEImageFilter::GetName
std::string GetName() const
Definition: sitkMultiLabelSTAPLEImageFilter.h:156
itk::simple::MultiLabelSTAPLEImageFilter::SetPriorProbabilities
Self & SetPriorProbabilities(std::vector< float > PriorProbabilities)
Definition: sitkMultiLabelSTAPLEImageFilter.h:137
sitkBasicFilters.h
itk::simple::MultiLabelSTAPLE
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,...
itk::simple::MultiLabelSTAPLEImageFilter::SetMaximumNumberOfIterations
Self & SetMaximumNumberOfIterations(unsigned int MaximumNumberOfIterations)
Definition: sitkMultiLabelSTAPLEImageFilter.h:125
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::MultiLabelSTAPLEImageFilter::GetMaximumNumberOfIterations
unsigned int GetMaximumNumberOfIterations() const
Definition: sitkMultiLabelSTAPLEImageFilter.h:130
itk::simple::MultiLabelSTAPLEImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkMultiLabelSTAPLEImageFilter.h:183
itk::simple::MultiLabelSTAPLEImageFilter::SetTerminationUpdateThreshold
Self & SetTerminationUpdateThreshold(float TerminationUpdateThreshold)
Definition: sitkMultiLabelSTAPLEImageFilter.h:115
sitkImageFilter.h
itk::simple::MultiLabelSTAPLEImageFilter
This filter performs a pixelwise combination of an arbitrary number of input images,...
Definition: sitkMultiLabelSTAPLEImageFilter.h:80
itk::uint64_t
::uint64_t uint64_t
itk::simple::MultiLabelSTAPLEImageFilter::GetPriorProbabilities
std::vector< float > GetPriorProbabilities() const
Definition: sitkMultiLabelSTAPLEImageFilter.h:144
itk::simple::MultiLabelSTAPLEImageFilter::m_pfGetConfusionMatrix
std::function< std::vector< float >unsigned int)> m_pfGetConfusionMatrix
Definition: sitkMultiLabelSTAPLEImageFilter.h:195
itk::simple::MultiLabelSTAPLEImageFilter::MemberFunctionType
Image(Self::*)(const std::vector< Image > &) MemberFunctionType
Definition: sitkMultiLabelSTAPLEImageFilter.h:176
itk::simple::MultiLabelSTAPLEImageFilter::GetLabelForUndecidedPixels
uint64_t GetLabelForUndecidedPixels() const
Definition: sitkMultiLabelSTAPLEImageFilter.h:110
itk::simple::MultiLabelSTAPLEImageFilter::GetConfusionMatrix
std::vector< float > GetConfusionMatrix(unsigned int input) const
Definition: sitkMultiLabelSTAPLEImageFilter.h:152
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::MultiLabelSTAPLEImageFilter::PixelIDTypeList
UnsignedIntegerPixelIDTypeList PixelIDTypeList
Definition: sitkMultiLabelSTAPLEImageFilter.h:95
itk
itk::ProcessObject
itk::simple::MultiLabelSTAPLEImageFilter::SetLabelForUndecidedPixels
Self & SetLabelForUndecidedPixels(uint64_t LabelForUndecidedPixels)
Definition: sitkMultiLabelSTAPLEImageFilter.h:103
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:36
itk::simple::MultiLabelSTAPLEImageFilter::GetTerminationUpdateThreshold
float GetTerminationUpdateThreshold() const
Definition: sitkMultiLabelSTAPLEImageFilter.h:120
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple::UnsignedIntegerPixelIDTypeList
typelist::MakeTypeList< BasicPixelID< uint8_t >, BasicPixelID< uint16_t >, BasicPixelID< uint32_t > >::Type UnsignedIntegerPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:88