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
32namespace itk::simple {
33
66 : public ImageFilter
67 {
68 public:
70
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
115
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
150
151}
152#endif
The Image class for SimpleITK.
Definition sitkImage.h:77
Image Execute(const Image &image1, const Image &image2, const Image &image3)
Image Execute(const Image &image1, const Image &image2, const Image &image3, const Image &image4)
typelist2::typelist< BasicPixelID< uint8_t >, BasicPixelID< uint16_t >, BasicPixelID< uint32_t >, BasicPixelID< uint64_t > > PixelIDTypeList
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Image Execute(const std::vector< Image > &images)
Image Execute(const Image &image1)
Image Execute(const Image &image1, const Image &image2, const Image &image3, const Image &image4, const Image &image5)
Image ExecuteInternal(const std::vector< Image > &images)
Self & SetLabelForUndecidedPixels(uint64_t LabelForUndecidedPixels)
Image Execute(const Image &image1, const Image &image2)
Image(Self::*)(const std::vector< Image > &) MemberFunctionType
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...
*par Constraints *The filter image with at least two dimensions and a vector *length of at least The theory supports extension to scalar images
#define SITKBasicFilters_EXPORT