18 #ifndef sitkExpandImageFilter_h
19 #define sitkExpandImageFilter_h
75 SITK_RETURN_SELF_TYPE_HEADER
SetExpandFactor(
unsigned int e ) { this->m_ExpandFactors = std::vector<unsigned int>(3, e );
return *
this; }
82 SITK_RETURN_SELF_TYPE_HEADER
SetExpandFactors ( std::vector<unsigned int> ExpandFactors ) { this->m_ExpandFactors = std::move(ExpandFactors);
return *
this; }
85 SITK_RETURN_SELF_TYPE_HEADER
SetExpandFactors(
unsigned int value ) { this->m_ExpandFactors = std::vector<unsigned int>(3, value);
return *
this; }
103 std::string
GetName()
const {
return std::string (
"ExpandImageFilter"); }
106 std::string ToString()
const;
118 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
120 template <
class TImageType>
Image ExecuteInternalVectorImage (
const Image& image );
128 std::vector<unsigned int> m_ExpandFactors{std::vector<unsigned int>(3, 1)};