Go to the documentation of this file.
18 #ifndef sitkBinaryReconstructionByDilationImageFilter_h
19 #define sitkBinaryReconstructionByDilationImageFilter_h
68 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
78 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
double ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
88 SITK_RETURN_SELF_TYPE_HEADER
SetFullyConnected (
bool FullyConnected ) { this->m_FullyConnected = FullyConnected;
return *
this; }
91 SITK_RETURN_SELF_TYPE_HEADER
FullyConnectedOn() {
return this->SetFullyConnected(
true); }
100 std::string
GetName()
const {
return std::string (
"BinaryReconstructionByDilationImageFilter"); }
103 std::string ToString()
const;
115 template <
class TImageType>
Image ExecuteInternal (
const Image * markerImage,
const Image * maskImage );
124 double m_BackgroundValue{0.0};
127 double m_ForegroundValue{1.0};
130 bool m_FullyConnected{
false};
The Image class for SimpleITK.
bool GetFullyConnected() const
Self & FullyConnectedOn()
double GetForegroundValue() const
binary reconstruction by dilation of an image
std::string GetName() const
Self & FullyConnectedOff()
#define SITKBasicFilters_EXPORT
Self & SetFullyConnected(bool FullyConnected)
Self & SetForegroundValue(double ForegroundValue)
double GetBackgroundValue() const
Self & SetBackgroundValue(double BackgroundValue)
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
The base interface for SimpleITK filters that take one input image.
Image(Self::*)(const Image *markerImage, const Image *maskImage) MemberFunctionType
IntegerPixelIDTypeList PixelIDTypeList
typelist2::typelist< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t > > IntegerPixelIDTypeList
Image BinaryReconstructionByDilation(const Image &markerImage, const Image &maskImage, double backgroundValue=0.0, double foregroundValue=1.0, bool fullyConnected=false)
binary reconstruction by dilation of an image