VTK  9.0.1
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 =========================================================================*/
52 #ifndef vtkProcrustesAlignmentFilter_h
53 #define vtkProcrustesAlignmentFilter_h
54 
55 #include "vtkFiltersHybridModule.h" // For export macro
57 
59 class vtkPointSet;
60 class vtkPoints;
61 
62 class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
63 {
64 public:
66 
70  void PrintSelf(ostream& os, vtkIndent indent) override;
71 
76 
78 
83  vtkGetObjectMacro(LandmarkTransform, vtkLandmarkTransform);
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 
119 protected:
121  ~vtkProcrustesAlignmentFilter() override;
122 
127 
129 
131 
134 
135 private:
137  void operator=(const vtkProcrustesAlignmentFilter&) = delete;
138 };
139 
140 #endif
Store vtkAlgorithm input/output information.
aligns a set of pointsets together
abstract class for specifying dataset behavior
Definition: vtkPointSet.h:62
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:33
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:33