VTK  9.3.0
vtkProcrustesAlignmentFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
52#ifndef vtkProcrustesAlignmentFilter_h
53#define vtkProcrustesAlignmentFilter_h
54
55#include "vtkFiltersHybridModule.h" // For export macro
57
58VTK_ABI_NAMESPACE_BEGIN
60class vtkPointSet;
61class vtkPoints;
62
63class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
64{
65public:
67
71 void PrintSelf(ostream& os, vtkIndent indent) override;
72
77
79
84 vtkGetObjectMacro(LandmarkTransform, vtkLandmarkTransform);
86
88
91 vtkGetObjectMacro(MeanPoints, vtkPoints);
93
95
101 vtkSetMacro(StartFromCentroid, bool);
102 vtkGetMacro(StartFromCentroid, bool);
103 vtkBooleanMacro(StartFromCentroid, bool);
105
107
116 vtkSetMacro(OutputPointsPrecision, int);
117 vtkGetMacro(OutputPointsPrecision, int);
119
120protected:
123
128
130
132
135
136private:
138 void operator=(const vtkProcrustesAlignmentFilter&) = delete;
139};
140
141VTK_ABI_NAMESPACE_END
142#endif
a simple class to control print indentation
Definition vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
a linear transform specified by two corresponding point sets
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
concrete class for storing a set of points
Definition vtkPointSet.h:68
represent and manipulate 3D points
Definition vtkPoints.h:38
aligns a set of pointsets together
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