SimpleITK  
sitkLabelVotingImageFilter.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 sitkLabelVotingImageFilter_h
19 #define sitkLabelVotingImageFilter_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::simple {
33 
66  : public ImageFilter
67  {
68  public:
70 
72  virtual ~LabelVotingImageFilter();
73 
74 
78 
80  using PixelIDTypeList = typelist2::typelist< BasicPixelID<uint8_t>, BasicPixelID<uint16_t>, BasicPixelID<uint32_t>, BasicPixelID<uint64_t> >;
81 
82 
83 \
84 
88  SITK_RETURN_SELF_TYPE_HEADER SetLabelForUndecidedPixels ( uint64_t LabelForUndecidedPixels ) { this->m_LabelForUndecidedPixels = LabelForUndecidedPixels; return *this; }
89 
93  uint64_t GetLabelForUndecidedPixels() const { return this->m_LabelForUndecidedPixels; }
94 
96  std::string GetName() const { return std::string ("LabelVotingImageFilter"); }
97 
99  std::string ToString() const;
100 
102  Image Execute ( const std::vector<Image> &images);
103  Image Execute ( const Image& image1 );
104  Image Execute ( const Image& image1, const Image& image2 );
105  Image Execute ( const Image& image1, const Image& image2, const Image& image3 );
106  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4 );
107  Image Execute ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5 );
108 
109 
110 
111 
112  private:
113 
116  using MemberFunctionType = Image (Self::*)( const std::vector<Image> & );
117  template <class TImageType> Image ExecuteInternal ( const std::vector<Image> &images );
118 
119 
120 
122 
123  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
124 
125 
126  uint64_t m_LabelForUndecidedPixels{std::numeric_limits<uint64_t>::max()};
127 
128 
129  };
130 
131 
141  SITKBasicFilters_EXPORT Image LabelVoting ( const std::vector<Image> &images , uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max() );
142 
143  SITKBasicFilters_EXPORT Image LabelVoting ( const Image& image1, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max() );
144  SITKBasicFilters_EXPORT Image LabelVoting ( const Image& image1, const Image& image2, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max() );
145  SITKBasicFilters_EXPORT Image LabelVoting ( const Image& image1, const Image& image2, const Image& image3, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max() );
146  SITKBasicFilters_EXPORT Image LabelVoting ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max() );
147  SITKBasicFilters_EXPORT Image LabelVoting ( const Image& image1, const Image& image2, const Image& image3, const Image& image4, const Image& image5, uint64_t labelForUndecidedPixels = std::numeric_limits<uint64_t>::max() );
148 
151 }
152 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:76
sitkBasicFilters.h
itk::simple::LabelVoting
Image LabelVoting(const std::vector< Image > &images, uint64_t labelForUndecidedPixels=std::numeric_limits< uint64_t >::max())
This filter performs pixelwise voting among an arbitrary number of input images, where each of them r...
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:28
itk::simple::LabelVotingImageFilter::GetLabelForUndecidedPixels
uint64_t GetLabelForUndecidedPixels() const
Definition: sitkLabelVotingImageFilter.h:93
itk::simple::LabelVotingImageFilter::GetName
std::string GetName() const
Definition: sitkLabelVotingImageFilter.h:96
sitkImageFilter.h
itk::simple::LabelVotingImageFilter::MemberFunctionType
Image(Self::*)(const std::vector< Image > &) MemberFunctionType
Definition: sitkLabelVotingImageFilter.h:116
itk::simple::LabelVotingImageFilter::PixelIDTypeList
typelist2::typelist< BasicPixelID< uint8_t >, BasicPixelID< uint16_t >, BasicPixelID< uint32_t >, BasicPixelID< uint64_t > > PixelIDTypeList
Definition: sitkLabelVotingImageFilter.h:80
itk::simple::LabelVotingImageFilter
This filter performs pixelwise voting among an arbitrary number of input images, where each of them r...
Definition: sitkLabelVotingImageFilter.h:65
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::BasicPixelID
Definition: sitkPixelIDTypes.h:48
itk::simple::LabelVotingImageFilter::SetLabelForUndecidedPixels
Self & SetLabelForUndecidedPixels(uint64_t LabelForUndecidedPixels)
Definition: sitkLabelVotingImageFilter.h:88
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:34
itk::simple::LabelVotingImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkLabelVotingImageFilter.h:123
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple
Definition: sitkAdditionalProcedures.h:28
itk::images
*par Constraints *The filter requires an image with at least two dimensions and a vector *length of at least The theory supports extension to scalar images