18 #ifndef sitkBinaryProjectionImageFilter_h
19 #define sitkBinaryProjectionImageFilter_h
84 SITK_RETURN_SELF_TYPE_HEADER
SetProjectionDimension (
unsigned int ProjectionDimension ) { this->m_ProjectionDimension = ProjectionDimension;
return *
this; }
93 SITK_RETURN_SELF_TYPE_HEADER
SetForegroundValue (
double ForegroundValue ) { this->m_ForegroundValue = ForegroundValue;
return *
this; }
103 SITK_RETURN_SELF_TYPE_HEADER
SetBackgroundValue (
double BackgroundValue ) { this->m_BackgroundValue = BackgroundValue;
return *
this; }
111 std::string
GetName()
const {
return std::string (
"BinaryProjectionImageFilter"); }
114 std::string ToString()
const;
126 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
134 unsigned int m_ProjectionDimension{0u};
136 double m_ForegroundValue{1.0};
138 double m_BackgroundValue{0.0};