VTK  9.1.0
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=========================================================================*/
38#ifndef vtkDijkstraImageContourLineInterpolator_h
39#define vtkDijkstraImageContourLineInterpolator_h
40
42#include "vtkInteractionWidgetsModule.h" // For export macro
43
45class vtkImageData;
46
47class VTKINTERACTIONWIDGETS_EXPORT vtkDijkstraImageContourLineInterpolator
49{
50public:
52
56 void PrintSelf(ostream& os, vtkIndent indent) override;
58
60
66 int InterpolateLine(vtkRenderer* ren, vtkContourRepresentation* rep, int idx1, int idx2) override;
67
69
74 virtual void SetCostImage(vtkImageData*);
75 vtkGetObjectMacro(CostImage, vtkImageData);
77
79
82 vtkGetObjectMacro(DijkstraImageGeodesicPath, vtkDijkstraImageGeodesicPath);
84
85protected:
88
91
92private:
94 void operator=(const vtkDijkstraImageContourLineInterpolator&) = delete;
95};
96
97#endif
Defines API for interpolating/modifying nodes from a vtkContourRepresentation.
represent the vtkContourWidget
Contour interpolator for placing points on an image.
static vtkDijkstraImageContourLineInterpolator * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instances of this class.
virtual void SetCostImage(vtkImageData *)
Set the image data for the vtkDijkstraImageGeodesicPath.
int InterpolateLine(vtkRenderer *ren, vtkContourRepresentation *rep, int idx1, int idx2) override
Subclasses that wish to interpolate a line segment must implement this.
Dijkstra algorithm to compute the graph geodesic.
topologically and geometrically regular array of data
Definition: vtkImageData.h:157
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract specification for renderers
Definition: vtkRenderer.h:173