SimpleITK  2.0.0
sitkLessImageFilter.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 sitkLessImageFilter_h
19 #define sitkLessImageFilter_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 sitkBinaryFunctorFilterTemplate.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 
50  public:
52 
54  virtual ~LessImageFilter();
55 
59 
62 
63 \
64 
69  SITK_RETURN_SELF_TYPE_HEADER SetBackgroundValue ( uint8_t BackgroundValue ) { this->m_BackgroundValue = BackgroundValue; return *this; }
70 
75  uint8_t GetBackgroundValue() const { return this->m_BackgroundValue; }\
76 
81  SITK_RETURN_SELF_TYPE_HEADER SetForegroundValue ( uint8_t ForegroundValue ) { this->m_ForegroundValue = ForegroundValue; return *this; }
82 
87  uint8_t GetForegroundValue() const { return this->m_ForegroundValue; }
88 
90  std::string GetName() const { return std::string ("LessImageFilter"); }
91 
93  std::string ToString() const;
94 
95 
97 #ifndef SWIG
98  Image Execute ( Image&& image1, const Image& image2 );
99 #endif
100  Image Execute ( const Image& image1, const Image& image2 );
101 
103  Image Execute ( const Image& image1, double constant );
104 #ifndef SWIG
105  Image Execute ( Image&& image1, double constant );
106 #endif
107  Image Execute ( double constant, const Image& image2 );
109  Image Execute ( const Image& image1, double constant, uint8_t backgroundValue, uint8_t foregroundValue );
110  Image Execute ( double constant, const Image& image2, uint8_t backgroundValue, uint8_t foregroundValue );
111 
112  private:
113 
116  using MemberFunctionType = Image (Self::*)( const Image& image1, const Image& image2 );
117  template <class TImageType> Image ExecuteInternal ( const Image& image1, const Image& image2 );
118 
119 
121 
122  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
123  using MemberFunction1Type = Image (Self::*)( double constant, const Image& image2 );
124  template <class TImageType> Image ExecuteInternal ( double constant, const Image& image2 );
126  std::unique_ptr<detail::MemberFunctionFactory<MemberFunction1Type> > m_MemberFactory1;
127 
128  using MemberFunction2Type = Image (Self::*)( const Image& image1, double constant );
129  template <class TImageType> Image ExecuteInternal ( const Image& image1, double constant );
131  std::unique_ptr<detail::MemberFunctionFactory<MemberFunction2Type> > m_MemberFactory2;
132 
133 
134  uint8_t m_BackgroundValue{0u};
135 
136  uint8_t m_ForegroundValue{1u};
137 
138 
139  bool m_InPlace{false};
140  };
141 
151 #ifndef SWIG
152  SITKBasicFilters_EXPORT Image Less ( Image&& image1, const Image& image2, uint8_t backgroundValue = 0u, uint8_t foregroundValue = 1u );
153 #endif
154  SITKBasicFilters_EXPORT Image Less ( const Image& image1, const Image& image2, uint8_t backgroundValue = 0u, uint8_t foregroundValue = 1u );
155 
157  SITKBasicFilters_EXPORT Image Less ( const Image& image1, double constant, uint8_t backgroundValue = 0u, uint8_t foregroundValue = 1u );
158 #ifndef SWIG
159  SITKBasicFilters_EXPORT Image Less ( Image&& image1, double constant, uint8_t backgroundValue = 0u, uint8_t foregroundValue = 1u );
160 #endif
161  SITKBasicFilters_EXPORT Image Less ( double constant, const Image& image2, uint8_t backgroundValue = 0u, uint8_t foregroundValue = 1u );
162  }
163 }
164 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
itk::simple::LessImageFilter::PixelIDTypeList
BasicPixelIDTypeList PixelIDTypeList
Definition: sitkLessImageFilter.h:61
sitkBasicFilters.h
itk::uint8_t
::uint8_t uint8_t
itk::simple::LessImageFilter::SetForegroundValue
Self & SetForegroundValue(uint8_t ForegroundValue)
Definition: sitkLessImageFilter.h:81
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::LessImageFilter::GetName
std::string GetName() const
Definition: sitkLessImageFilter.h:90
itk::simple::LessImageFilter::MemberFunction2Type
Image(Self::*)(const Image &image1, double constant) MemberFunction2Type
Definition: sitkLessImageFilter.h:128
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::LessImageFilter::m_MemberFactory2
std::unique_ptr< detail::MemberFunctionFactory< MemberFunction2Type > > m_MemberFactory2
Definition: sitkLessImageFilter.h:131
itk::simple::LessImageFilter
Implements pixel-wise generic operation of two images, or of an image and a constant.
Definition: sitkLessImageFilter.h:49
itk::simple::LessImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkLessImageFilter.h:122
itk::simple::LessImageFilter::GetForegroundValue
uint8_t GetForegroundValue() const
Definition: sitkLessImageFilter.h:87
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::LessImageFilter::GetBackgroundValue
uint8_t GetBackgroundValue() const
Definition: sitkLessImageFilter.h:75
itk
itk::simple::LessImageFilter::MemberFunctionType
Image(Self::*)(const Image &image1, const Image &image2) MemberFunctionType
Definition: sitkLessImageFilter.h:116
itk::simple::ImageFilter
The base interface for SimpleITK filters that take one input image.
Definition: sitkImageFilter.h:36
itk::Image
Definition: sitkPixelIDTypes.h:26
itk::simple::LessImageFilter::SetBackgroundValue
Self & SetBackgroundValue(uint8_t BackgroundValue)
Definition: sitkLessImageFilter.h:69
itk::simple::Less
Image Less(Image &&image1, const Image &image2, uint8_t backgroundValue=0u, uint8_t foregroundValue=1u)
Implements pixel-wise generic operation of two images, or of an image and a constant.
itk::simple::LessImageFilter::MemberFunction1Type
Image(Self::*)(double constant, const Image &image2) MemberFunction1Type
Definition: sitkLessImageFilter.h:123
itk::simple::LessImageFilter::m_MemberFactory1
std::unique_ptr< detail::MemberFunctionFactory< MemberFunction1Type > > m_MemberFactory1
Definition: sitkLessImageFilter.h:126