18#ifndef sitkFastMarchingBaseImageFilter_h
19#define sitkFastMarchingBaseImageFilter_h
109 SITK_RETURN_SELF_TYPE_HEADER
SetTrialPoints ( std::vector< std::vector<unsigned int> > TrialPoints ) { this->
m_TrialPoints = std::move(TrialPoints);
return *
this; }
161 std::string
GetName()
const {
return std::string (
"FastMarchingBaseImageFilter"); }
184 std::vector< std::vector<unsigned int> >
m_TrialPoints{std::vector< std::vector<unsigned int > >()};
double GetNormalizationFactor() const
std::string GetName() const
Self & SetTopologyCheck(TopologyCheckType TopologyCheck)
Self & SetInitialTrialValues(std::vector< double > InitialTrialValues)
Set the initial seed values for corresponding trial point.
std::vector< double > m_InitialTrialValues
Self & SetStoppingValue(double StoppingValue)
double GetStoppingValue() const
Image ExecuteInternal(const Image &image1)
Self & SetTrialPoints(std::vector< std::vector< unsigned int > > TrialPoints)
Image(Self::*)(const Image &image1) MemberFunctionType
Image Execute(const Image &image1)
FastMarchingBaseImageFilter Self
virtual ~FastMarchingBaseImageFilter()
Self & ClearTrialPoints()
Remove all TrialPoints points.
Self & AddTrialPoint(std::vector< unsigned int > point)
Add TrialPoints point.
std::string ToString() const
Self & SetNormalizationFactor(double NormalizationFactor)
std::vector< double > GetInitialTrialValues() const
TopologyCheckType m_TopologyCheck
std::vector< std::vector< unsigned int > > GetTrialPoints() const
std::vector< std::vector< unsigned int > > m_TrialPoints
double m_NormalizationFactor
BasicPixelIDTypeList PixelIDTypeList
FastMarchingBaseImageFilter()
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
TopologyCheckType GetTopologyCheck() const
The Image class for SimpleITK.
typelist2::typelist< BasicPixelID< int8_t >, BasicPixelID< uint8_t >, BasicPixelID< int16_t >, BasicPixelID< uint16_t >, BasicPixelID< int32_t >, BasicPixelID< uint32_t >, BasicPixelID< float >, BasicPixelID< double > > BasicPixelIDTypeList
Image FastMarchingBase(const Image &image1, std::vector< std::vector< unsigned int > > trialPoints=std::vector< std::vector< unsigned int > >(), double normalizationFactor=1.0, double stoppingValue=std::numeric_limits< float >::max()/2.0, FastMarchingBaseImageFilter::TopologyCheckType topologyCheck=itk::simple::FastMarchingBaseImageFilter::Nothing, std::vector< double > initialTrialValues=std::vector< double >())
Apply the Fast Marching method to solve an Eikonal equation on an image.
*par Constraints *The filter image with at least two dimensions and a vector *length of at least The theory supports extension to scalar but *the implementation of the itk vector classes do not **The template parameter TRealType must be floating point(float or double) or *a user-defined "real" numerical type with arithmetic operations defined *sufficient to compute derivatives. **\par Performance *This filter will automatically multithread if run with *SetUsePrincipleComponents
#define SITKBasicFilters_EXPORT