VTK  9.4.20250130
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
62#ifndef vtkProcrustesAlignmentFilter_h
63#define vtkProcrustesAlignmentFilter_h
64
65#include "vtkFiltersHybridModule.h" // For export macro
67
68VTK_ABI_NAMESPACE_BEGIN
70class vtkPointSet;
71class vtkPoints;
72
73class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
74{
75public:
77
81 void PrintSelf(ostream& os, vtkIndent indent) override;
82
87
89
94 vtkGetObjectMacro(LandmarkTransform, vtkLandmarkTransform);
96
98
101 vtkGetObjectMacro(MeanPoints, vtkPoints);
103
105
111 vtkSetMacro(StartFromCentroid, bool);
112 vtkGetMacro(StartFromCentroid, bool);
113 vtkBooleanMacro(StartFromCentroid, bool);
115
117
126 vtkSetMacro(OutputPointsPrecision, int);
127 vtkGetMacro(OutputPointsPrecision, int);
129
130protected:
133
138
140
142
145
146private:
148 void operator=(const vtkProcrustesAlignmentFilter&) = delete;
149};
150
151VTK_ABI_NAMESPACE_END
152#endif
a simple class to control print indentation
Definition vtkIndent.h:108
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:98
represent and manipulate 3D points
Definition vtkPoints.h:139
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