VTK  9.3.1
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:
113  ~vtkProcrustesAlignmentFilter() override;
114 
119 
121 
123 
126 
127 private:
129  void operator=(const vtkProcrustesAlignmentFilter&) = delete;
130 };
131 
132 VTK_ABI_NAMESPACE_END
133 #endif
Store vtkAlgorithm input/output information.
aligns a set of pointsets together
concrete class for storing a set of points
Definition: vtkPointSet.h:58
Superclass for algorithms that produce only vtkMultiBlockDataSet as output.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
static vtkMultiBlockDataSetAlgorithm * New()
a simple class to control print indentation
Definition: vtkIndent.h:28
a linear transform specified by two corresponding point sets
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.
represent and manipulate 3D points
Definition: vtkPoints.h:28