18 #ifndef sitkExpandImageFilter_h
19 #define sitkExpandImageFilter_h
74 SITK_RETURN_SELF_TYPE_HEADER
SetExpandFactor(
unsigned int e ) { this->m_ExpandFactors = std::vector<unsigned int>(3, e );
return *
this; }
81 SITK_RETURN_SELF_TYPE_HEADER
SetExpandFactors ( std::vector<unsigned int> ExpandFactors ) { this->m_ExpandFactors = std::move(ExpandFactors);
return *
this; }
84 SITK_RETURN_SELF_TYPE_HEADER
SetExpandFactors(
unsigned int value ) { this->m_ExpandFactors = std::vector<unsigned int>(3, value);
return *
this; }
102 std::string
GetName()
const {
return std::string (
"ExpandImageFilter"); }
105 std::string ToString()
const;
117 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
119 template <
class TImageType>
Image ExecuteInternalVectorImage (
const Image& image );
127 std::vector<unsigned int> m_ExpandFactors{std::vector<unsigned int>(3, 1)};