18 #ifndef sitkHMinimaImageFilter_h
19 #define sitkHMinimaImageFilter_h
72 SITK_RETURN_SELF_TYPE_HEADER
SetHeight (
double Height ) { this->m_Height = Height;
return *
this; }
82 SITK_RETURN_SELF_TYPE_HEADER
SetFullyConnected (
bool FullyConnected ) { this->m_FullyConnected = FullyConnected;
return *
this; }
85 SITK_RETURN_SELF_TYPE_HEADER
FullyConnectedOn() {
return this->SetFullyConnected(
true); }
93 std::string
GetName()
const {
return std::string (
"HMinimaImageFilter"); }
96 std::string ToString()
const;
104 Image Execute (
const Image& image1,
double height,
bool fullyConnected );
110 typedef Image (Self::*MemberFunctionType)(
const Image& image1 );
111 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
Image HMinima(const Image &image1, double height=2.0, bool fullyConnected=false)
Suppress local minima whose depth below the baseline is less than h.
#define SITKBasicFilters_EXPORT
Self & SetHeight(double Height)
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
std::string GetName() const
nsstd::auto_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
Self & SetFullyConnected(bool FullyConnected)
Self & FullyConnectedOn()
The Image class for SimpleITK.
bool GetFullyConnected() const
BasicPixelIDTypeList PixelIDTypeList
Suppress local minima whose depth below the baseline is less than h.
Self & FullyConnectedOff()
The base interface for SimpleITK filters that take one input image.