 |
VTK
9.0.1
|
Go to the documentation of this file.
50 #ifndef vtkDijkstraImageGeodesicPath_h
51 #define vtkDijkstraImageGeodesicPath_h
54 #include "vtkFiltersModelingModule.h"
87 vtkGetMacro(ImageWeight,
double);
95 vtkGetMacro(EdgeLengthWeight,
double);
102 vtkSetClampMacro(CurvatureWeight,
double, 0.0, 1.0);
103 vtkGetMacro(CurvatureWeight,
double);
double CalculateDynamicEdgeCost(vtkDataSet *inData, vtkIdType u, vtkIdType v) override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkImageData * GetInputAsImageData()
~vtkDijkstraImageGeodesicPath() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
Dijkstra algorithm to compute the graph geodesic.
static vtkDijkstraImageGeodesicPath * New()
Instantiate the class.
topologically and geometrically regular array of data
a simple class to control print indentation
void UpdateStaticCosts(vtkImageData *image)
abstract class to specify dataset behavior
double CalculateStaticEdgeCost(vtkDataSet *inData, vtkIdType u, vtkIdType v) override
void BuildAdjacency(vtkDataSet *inData) override
Dijkstra algorithm to compute the graph geodesic.
general representation of visualization data
void SetInputData(vtkDataObject *)
Specify the image object which is used as a cost function.
vtkDijkstraImageGeodesicPath()
void SetImageWeight(double)
Image cost weight.
void SetEdgeLengthWeight(double)
Edge length cost weight.