VTK
vtkDijkstraImageContourLineInterpolator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDijkstraImageContourLineInterpolator.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
41 #ifndef vtkDijkstraImageContourLineInterpolator_h
42 #define vtkDijkstraImageContourLineInterpolator_h
43 
44 #include "vtkInteractionWidgetsModule.h" // For export macro
46 
48 class vtkImageData;
49 
50 class VTKINTERACTIONWIDGETS_EXPORT vtkDijkstraImageContourLineInterpolator
52 {
53 public:
55 
60  void PrintSelf(ostream& os, vtkIndent indent) override;
62 
64 
70  int InterpolateLine( vtkRenderer *ren,
72  int idx1, int idx2 ) override;
73 
75 
80  virtual void SetCostImage( vtkImageData* );
81  vtkGetObjectMacro( CostImage, vtkImageData );
83 
85 
88  vtkGetObjectMacro( DijkstraImageGeodesicPath, vtkDijkstraImageGeodesicPath );
90 
91 protected:
94 
97 
98 private:
101  void operator=(const
103 };
104 
105 #endif
vtkDijkstraImageContourLineInterpolator::DijkstraImageGeodesicPath
vtkDijkstraImageGeodesicPath * DijkstraImageGeodesicPath
Definition: vtkDijkstraImageContourLineInterpolator.h:96
vtkContourLineInterpolator
Defines API for interpolating/modifying nodes from a vtkContourRepresentation.
Definition: vtkContourLineInterpolator.h:42
vtkObject::New
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
vtkContourRepresentation
represent the vtkContourWidget
Definition: vtkContourRepresentation.h:120
vtkDijkstraImageContourLineInterpolator
Contour interpolator for placing points on an image.
Definition: vtkDijkstraImageContourLineInterpolator.h:50
vtkDijkstraImageGeodesicPath
Dijkstra algorithm to compute the graph geodesic.
Definition: vtkDijkstraImageGeodesicPath.h:61
vtkContourLineInterpolator::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
vtkDijkstraImageContourLineInterpolator::CostImage
vtkImageData * CostImage
Definition: vtkDijkstraImageContourLineInterpolator.h:95
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkRenderer
abstract specification for renderers
Definition: vtkRenderer.h:63
vtkContourLineInterpolator::InterpolateLine
virtual int InterpolateLine(vtkRenderer *ren, vtkContourRepresentation *rep, int idx1, int idx2)=0
Subclasses that wish to interpolate a line segment must implement this.
vtkContourLineInterpolator.h