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
43 #ifndef vtkProcrustesAlignmentFilter_h
44 #define vtkProcrustesAlignmentFilter_h
45 
46 #include "vtkFiltersHybridModule.h" // For export macro
48 
49 VTK_ABI_NAMESPACE_BEGIN
51 class vtkPointSet;
52 class vtkPoints;
53 
54 class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
55 {
56 public:
58 
62  void PrintSelf(ostream& os, vtkIndent indent) override;
63 
68 
70 
75  vtkGetObjectMacro(LandmarkTransform, vtkLandmarkTransform);
77 
79 
82  vtkGetObjectMacro(MeanPoints, vtkPoints);
84 
86 
92  vtkSetMacro(StartFromCentroid, bool);
93  vtkGetMacro(StartFromCentroid, bool);
94  vtkBooleanMacro(StartFromCentroid, bool);
96 
98 
107  vtkSetMacro(OutputPointsPrecision, int);
108  vtkGetMacro(OutputPointsPrecision, int);
110 
111 protected:
114 
119 
121 
123 
126 
127 private:
129  void operator=(const vtkProcrustesAlignmentFilter&) = delete;
130 };
131 
132 VTK_ABI_NAMESPACE_END
133 #endif
a simple class to control print indentation
Definition: vtkIndent.h:29
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:59
represent and manipulate 3D points
Definition: vtkPoints.h:29
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