VTK
vtkPCACurvatureEstimation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPCACurvatureEstimation.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See LICENSE file 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 =========================================================================*/
54 #ifndef vtkPCACurvatureEstimation_h
55 #define vtkPCACurvatureEstimation_h
56 
57 #include "vtkFiltersPointsModule.h" // For export macro
58 #include "vtkPolyDataAlgorithm.h"
59 
61 
62 
63 class VTKFILTERSPOINTS_EXPORT vtkPCACurvatureEstimation : public vtkPolyDataAlgorithm
64 {
65 public:
67 
73  void PrintSelf(ostream& os, vtkIndent indent) override;
75 
77 
83  vtkSetClampMacro(SampleSize,int,1,VTK_INT_MAX);
84  vtkGetMacro(SampleSize,int);
86 
88 
94  vtkGetObjectMacro(Locator,vtkAbstractPointLocator);
96 
97 protected:
100 
101  // IVars
104 
106  vtkInformationVector *) override;
108 
109 private:
111  void operator=(const vtkPCACurvatureEstimation&) = delete;
112 
113 };
114 
115 #endif
VTK_INT_MAX
#define VTK_INT_MAX
Definition: vtkType.h:159
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:42
vtkPCACurvatureEstimation::SetLocator
void SetLocator(vtkAbstractPointLocator *locator)
Specify a point locator.
vtkPCACurvatureEstimation::Locator
vtkAbstractPointLocator * Locator
Definition: vtkPCACurvatureEstimation.h:103
vtkPCACurvatureEstimation::New
static vtkPCACurvatureEstimation * New()
Standard methods for instantiating, obtaining type information, and printing information.
vtkPCACurvatureEstimation::vtkPCACurvatureEstimation
vtkPCACurvatureEstimation()
vtkPCACurvatureEstimation::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkPCACurvatureEstimation::~vtkPCACurvatureEstimation
~vtkPCACurvatureEstimation() override
vtkPCACurvatureEstimation::RequestData
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkPolyDataAlgorithm.h
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:87
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkPCACurvatureEstimation::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkAbstractPointLocator
abstract class to quickly locate points in 3-space
Definition: vtkAbstractPointLocator.h:42
vtkPCACurvatureEstimation::SampleSize
int SampleSize
Definition: vtkPCACurvatureEstimation.h:102
vtkPCACurvatureEstimation
generate curvature estimates using principal component analysis
Definition: vtkPCACurvatureEstimation.h:64
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:45