18 #ifndef sitkBinaryContourImageFilter_h
19 #define sitkBinaryContourImageFilter_h
77 SITK_RETURN_SELF_TYPE_HEADER
SetFullyConnected (
bool FullyConnected ) { this->m_FullyConnected = FullyConnected;
return *
this; }
80 SITK_RETURN_SELF_TYPE_HEADER
FullyConnectedOn() {
return this->SetFullyConnected(
true); }
91 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
101 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
double ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
108 std::string
GetName()
const {
return std::string (
"BinaryContourImageFilter"); }
111 std::string ToString()
const;
119 Image Execute (
const Image& image1,
bool fullyConnected,
double backgroundValue,
double foregroundValue );
126 typedef Image (Self::*MemberFunctionType)(
const Image& image1 );
127 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
typelist::MakeTypeList< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t > >::Type IntegerPixelIDTypeList
bool GetFullyConnected() const
#define SITKBasicFilters_EXPORT
IntegerPixelIDTypeList PixelIDTypeList
Self & SetBackgroundValue(double BackgroundValue)
std::string GetName() const
Labels the pixels on the border of the objects in a binary image.
Self & FullyConnectedOn()
BinaryContourImageFilter Self
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Self & FullyConnectedOff()
Image BinaryContour(const Image &image1, bool fullyConnected=false, double backgroundValue=0.0, double foregroundValue=1.0)
Labels the pixels on the border of the objects in a binary image.
The main Image class for SimpleITK.
Self & SetForegroundValue(double ForegroundValue)
double GetBackgroundValue() const
double GetForegroundValue() const
The base interface for SimpleITK filters that take one input image.
Self & SetFullyConnected(bool FullyConnected)