VTK  9.2.6
vtkProcrustesAlignmentFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkProcrustesAlignmentFilter.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=========================================================================*/
51
52#ifndef vtkProcrustesAlignmentFilter_h
53#define vtkProcrustesAlignmentFilter_h
54
55#include "vtkFiltersHybridModule.h" // For export macro
57
59class vtkPointSet;
60class vtkPoints;
61
62class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
63{
64public:
66
70 void PrintSelf(ostream& os, vtkIndent indent) override;
71
76
78
85
87
90 vtkGetObjectMacro(MeanPoints, vtkPoints);
92
94
100 vtkSetMacro(StartFromCentroid, bool);
101 vtkGetMacro(StartFromCentroid, bool);
102 vtkBooleanMacro(StartFromCentroid, bool);
104
106
115 vtkSetMacro(OutputPointsPrecision, int);
116 vtkGetMacro(OutputPointsPrecision, int);
118
119protected:
122
127
129
131
134
135private:
137 void operator=(const vtkProcrustesAlignmentFilter&) = delete;
138};
139
140#endif
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
a linear transform specified by two corresponding point sets
concrete class for storing a set of points
Definition vtkPointSet.h:67
represent and manipulate 3D points
Definition vtkPoints.h:34
void PrintSelf(ostream &os, vtkIndent indent) override
Prints information about the state of the filter.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Usual data generation method.
static vtkProcrustesAlignmentFilter * New()
Creates with similarity transform.
~vtkProcrustesAlignmentFilter() override