SimpleITK  2.0.0
sitkDanielssonDistanceMapImageFilter.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 sitkDanielssonDistanceMapImageFilter_h
19 #define sitkDanielssonDistanceMapImageFilter_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 sitkImageFilterTemplate.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 
79  public:
81 
84 
88 
91 \
92 
96  SITK_RETURN_SELF_TYPE_HEADER SetInputIsBinary ( bool InputIsBinary ) { this->m_InputIsBinary = InputIsBinary; return *this; }
97 
99  SITK_RETURN_SELF_TYPE_HEADER InputIsBinaryOn() { return this->SetInputIsBinary(true); }
100  SITK_RETURN_SELF_TYPE_HEADER InputIsBinaryOff() { return this->SetInputIsBinary(false); }
101 
105  bool GetInputIsBinary() const { return this->m_InputIsBinary; }\
106 
110  SITK_RETURN_SELF_TYPE_HEADER SetSquaredDistance ( bool SquaredDistance ) { this->m_SquaredDistance = SquaredDistance; return *this; }
111 
113  SITK_RETURN_SELF_TYPE_HEADER SquaredDistanceOn() { return this->SetSquaredDistance(true); }
114  SITK_RETURN_SELF_TYPE_HEADER SquaredDistanceOff() { return this->SetSquaredDistance(false); }
115 
119  bool GetSquaredDistance() const { return this->m_SquaredDistance; }\
120 
124  SITK_RETURN_SELF_TYPE_HEADER SetUseImageSpacing ( bool UseImageSpacing ) { this->m_UseImageSpacing = UseImageSpacing; return *this; }
125 
127  SITK_RETURN_SELF_TYPE_HEADER UseImageSpacingOn() { return this->SetUseImageSpacing(true); }
128  SITK_RETURN_SELF_TYPE_HEADER UseImageSpacingOff() { return this->SetUseImageSpacing(false); }
129 
133  bool GetUseImageSpacing() const { return this->m_UseImageSpacing; }
134 
136  std::string GetName() const { return std::string ("DanielssonDistanceMapImageFilter"); }
137 
139  std::string ToString() const;
140 
141 
144  Image Execute ( const Image& image1 );
145 
146  private:
147 
150  using MemberFunctionType = Image (Self::*)( const Image& image1 );
151  template <class TImageType> Image ExecuteInternal ( const Image& image1 );
152 
153 
155 
156  std::unique_ptr<detail::MemberFunctionFactory<MemberFunctionType> > m_MemberFactory;
157 
158 
159  bool m_InputIsBinary{false};
160 
161  bool m_SquaredDistance{false};
162 
163  bool m_UseImageSpacing{false};
164 
165 
166  };
167 
178  SITKBasicFilters_EXPORT Image DanielssonDistanceMap ( const Image& image1, bool inputIsBinary = false, bool squaredDistance = false, bool useImageSpacing = false );
179 
181  }
182 }
183 #endif
itk::simple::Image
The Image class for SimpleITK.
Definition: sitkImage.h:75
sitkBasicFilters.h
itk::simple::DanielssonDistanceMapImageFilter::GetUseImageSpacing
bool GetUseImageSpacing() const
Definition: sitkDanielssonDistanceMapImageFilter.h:133
itk::simple::DanielssonDistanceMapImageFilter::m_MemberFactory
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Definition: sitkDanielssonDistanceMapImageFilter.h:156
itk::simple::detail::MemberFunctionAddressor
Definition: sitkDetail.h:32
itk::simple::DanielssonDistanceMapImageFilter::UseImageSpacingOff
Self & UseImageSpacingOff()
Definition: sitkDanielssonDistanceMapImageFilter.h:128
sitkImageFilter.h
itk::simple::DanielssonDistanceMapImageFilter::SetSquaredDistance
Self & SetSquaredDistance(bool SquaredDistance)
Definition: sitkDanielssonDistanceMapImageFilter.h:110
itk::simple::DanielssonDistanceMapImageFilter::SetUseImageSpacing
Self & SetUseImageSpacing(bool UseImageSpacing)
Definition: sitkDanielssonDistanceMapImageFilter.h:124
itk::simple::DanielssonDistanceMapImageFilter::InputIsBinaryOff
Self & InputIsBinaryOff()
Definition: sitkDanielssonDistanceMapImageFilter.h:100
itk::simple::DanielssonDistanceMapImageFilter::PixelIDTypeList
IntegerPixelIDTypeList PixelIDTypeList
Definition: sitkDanielssonDistanceMapImageFilter.h:90
itk::simple::DanielssonDistanceMapImageFilter::SquaredDistanceOn
Self & SquaredDistanceOn()
Definition: sitkDanielssonDistanceMapImageFilter.h:113
itk::simple::DanielssonDistanceMapImageFilter::GetName
std::string GetName() const
Definition: sitkDanielssonDistanceMapImageFilter.h:136
itk::simple::DanielssonDistanceMapImageFilter::SquaredDistanceOff
Self & SquaredDistanceOff()
Definition: sitkDanielssonDistanceMapImageFilter.h:114
SITKBasicFilters_EXPORT
#define SITKBasicFilters_EXPORT
Definition: sitkBasicFilters.h:52
itk::simple::DanielssonDistanceMapImageFilter::UseImageSpacingOn
Self & UseImageSpacingOn()
Definition: sitkDanielssonDistanceMapImageFilter.h:127
itk::simple::DanielssonDistanceMap
Image DanielssonDistanceMap(const Image &image1, bool inputIsBinary=false, bool squaredDistance=false, bool useImageSpacing=false)
This filter computes the distance map of the input image as an approximation with pixel accuracy to t...
itk
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::DanielssonDistanceMapImageFilter
This filter computes the distance map of the input image as an approximation with pixel accuracy to t...
Definition: sitkDanielssonDistanceMapImageFilter.h:78
itk::simple::DanielssonDistanceMapImageFilter::GetSquaredDistance
bool GetSquaredDistance() const
Definition: sitkDanielssonDistanceMapImageFilter.h:119
itk::simple::DanielssonDistanceMapImageFilter::InputIsBinaryOn
Self & InputIsBinaryOn()
Definition: sitkDanielssonDistanceMapImageFilter.h:99
itk::simple::DanielssonDistanceMapImageFilter::MemberFunctionType
Image(Self::*)(const Image &image1) MemberFunctionType
Definition: sitkDanielssonDistanceMapImageFilter.h:150
itk::simple::DanielssonDistanceMapImageFilter::SetInputIsBinary
Self & SetInputIsBinary(bool InputIsBinary)
Definition: sitkDanielssonDistanceMapImageFilter.h:96
itk::simple::DanielssonDistanceMapImageFilter::GetInputIsBinary
bool GetInputIsBinary() const
Definition: sitkDanielssonDistanceMapImageFilter.h:105
itk::simple::IntegerPixelIDTypeList
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t > >::Type IntegerPixelIDTypeList
Definition: sitkPixelIDTypeLists.h:76