18 #ifndef sitkFastMarchingBaseImageFilter_h
19 #define sitkFastMarchingBaseImageFilter_h
102 SITK_RETURN_SELF_TYPE_HEADER
SetNormalizationFactor (
double NormalizationFactor ) { this->m_NormalizationFactor = NormalizationFactor;
return *
this; }
112 SITK_RETURN_SELF_TYPE_HEADER
SetStoppingValue (
double StoppingValue ) { this->m_StoppingValue = StoppingValue;
return *
this; }
119 typedef enum {Nothing,NoHandles,Strict} TopologyCheckType;
129 SITK_RETURN_SELF_TYPE_HEADER
SetTrialPoints ( std::vector< std::vector<unsigned int> > t )
131 this->m_TrialPoints = t;
return *
this;
137 this->m_TrialPoints.push_back( t );
return *
this;
143 this->m_TrialPoints.clear();
return *
this;
149 return this->m_TrialPoints;
153 std::string
GetName()
const {
return std::string (
"FastMarchingBaseImageFilter"); }
156 std::string ToString()
const;
172 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );