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 =========================================================================*/
40 #ifndef __vtkDijkstraImageContourLineInterpolator_h
41 #define __vtkDijkstraImageContourLineInterpolator_h
42 
44 
46 class vtkImageData;
47 
50 {
51 public:
53 
56  void PrintSelf(ostream& os, vtkIndent indent);
58 
60 
62 
66  virtual int InterpolateLine( vtkRenderer *ren,
68  int idx1, int idx2 );
70 
72 
75  virtual void SetCostImage( vtkImageData* );
76  vtkGetObjectMacro( CostImage, vtkImageData );
78 
80 
81  vtkGetObjectMacro( DijkstraImageGeodesicPath, vtkDijkstraImageGeodesicPath );
83 
84 protected:
87 
90 
91 private:
93  const vtkDijkstraImageContourLineInterpolator&); //Not implemented
94  void operator=(const
95  vtkDijkstraImageContourLineInterpolator&); //Not implemented
96 };
97 
98 #endif
abstract specification for renderers
Definition: vtkRenderer.h:69
virtual int InterpolateLine(vtkRenderer *ren, vtkContourRepresentation *rep, int idx1, int idx2)=0
represent the vtkContourWidget
Contour interpolator for placing points on an image.
a simple class to control print indentation
Definition: vtkIndent.h:37
topologically and geometrically regular array of data
Definition: vtkImageData.h:43
#define VTK_WIDGETS_EXPORT
Defines API for interpolating/modifying nodes from a vtkContourRepresentation.
void PrintSelf(ostream &os, vtkIndent indent)
static vtkObject * New()
Dijkstra algorithm to compute the graph geodesic.