1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkDecimatePolylineFilter.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkDecimatePolylineFilter - reduce the number of lines in a polyline
// .SECTION Description
// vtkDecimatePolylineFilter is a filter to reduce the number of lines in a
// polyline. The algorithm functions by evaluating an error metric for each
// vertex (i.e., the distance of the vertex to a line defined from the two
// vertices on either side of the vertex). Then, these vertices are placed
// into a priority queue, and those with larger errors are deleted first.
// The decimation continues until the target reduction is reached.
//
// .SECTION Caveats
// This algorithm is a very simple implementation that overlooks some
// potential complexities. First, if a vertex is multiply connected,
// meaning that it is used by multiple polylines, then the extra
// topological constraints are ignored. Second, the error is not updated
// as vertices are deleted (similar to iteratively computing a quadric
// error metric). Thus, once calculated, the error is used to determine
// which vertices are removed. This can produce less than optimal results.
//
// .SECTION See Also
// vtkDecimate vtkDecimateProp vtkQuadricClustering vtkQuadricDecimation
#ifndef __vtkDecimatePolylineFilter_h
#define __vtkDecimatePolylineFilter_h
#include "vtkSmartPointer.h" // Needed for SP ivars
#include "vtkPolyDataAlgorithm.h"
class vtkPriorityQueue;
class VTK_GRAPHICS_EXPORT vtkDecimatePolylineFilter : public vtkPolyDataAlgorithm
{
public:
// Description:
// Standard methods for type information and printing.
vtkTypeMacro(vtkDecimatePolylineFilter,vtkPolyDataAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Instantiate this object with a target reduction of 0.90.
static vtkDecimatePolylineFilter *New();
// Description:
// Specify the desired reduction in the total number of polygons (e.g., if
// TargetReduction is set to 0.9, this filter will try to reduce the data set
// to 10% of its original size).
vtkSetClampMacro(TargetReduction,double,0.0,1.0);
vtkGetMacro(TargetReduction,double);
protected:
vtkDecimatePolylineFilter();
~vtkDecimatePolylineFilter();
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
double ComputeError( vtkPolyData* input, int prev, int id, int next );
void UpdateError( vtkPolyData* input, int iId );
int GetPrev( int iId );
int GetNext( int iId );
struct vtkDecimatePolylineVertexErrorSTLMap;
vtkDecimatePolylineVertexErrorSTLMap* ErrorMap;
vtkSmartPointer< vtkPriorityQueue > PriorityQueue;
bool Closed;
double TargetReduction;
private:
vtkDecimatePolylineFilter(const vtkDecimatePolylineFilter&); // Not implemented.
void operator=(const vtkDecimatePolylineFilter&); // Not implemented.
};
#endif
|