Go to the documentation of this file.
18 #ifndef sitkGrayscaleGeodesicDilateImageFilter_h
19 #define sitkGrayscaleGeodesicDilateImageFilter_h
69 SITK_RETURN_SELF_TYPE_HEADER
SetRunOneIteration (
bool RunOneIteration ) { this->m_RunOneIteration = RunOneIteration;
return *
this; }
83 SITK_RETURN_SELF_TYPE_HEADER
SetFullyConnected (
bool FullyConnected ) { this->m_FullyConnected = FullyConnected;
return *
this; }
86 SITK_RETURN_SELF_TYPE_HEADER
FullyConnectedOn() {
return this->SetFullyConnected(
true); }
95 std::string
GetName()
const {
return std::string (
"GrayscaleGeodesicDilateImageFilter"); }
98 std::string ToString()
const;
110 template <
class TImageType>
Image ExecuteInternal (
const Image& image1,
const Image& image2 );
119 bool m_RunOneIteration{
false};
122 bool m_FullyConnected{
false};
The Image class for SimpleITK.
typelist2::typelist< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > > BasicPixelIDTypeList
Self & RunOneIterationOn()
Self & FullyConnectedOn()
Geodesic grayscale dilation of an image.
bool GetRunOneIteration() const
Image GrayscaleGeodesicDilate(const Image &image1, const Image &image2, bool runOneIteration=false, bool fullyConnected=false)
Geodesic grayscale dilation of an image.
bool GetFullyConnected() const
BasicPixelIDTypeList PixelIDTypeList
Image(Self::*)(const Image &image1, const Image &image2) MemberFunctionType
#define SITKBasicFilters_EXPORT
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
std::string GetName() const
Self & RunOneIterationOff()
The base interface for SimpleITK filters that take one input image.
Self & FullyConnectedOff()
Self & SetFullyConnected(bool FullyConnected)
Self & SetRunOneIteration(bool RunOneIteration)