VTK  9.2.6
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 =========================================================================*/
55 #ifndef vtkProcrustesAlignmentFilter_h
56 #define vtkProcrustesAlignmentFilter_h
57 
58 #include "vtkFiltersHybridModule.h" // For export macro
60 
62 class vtkPointSet;
63 class vtkPoints;
64 
65 class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
66 {
67 public:
69 
73  void PrintSelf(ostream& os, vtkIndent indent) override;
74 
79 
81 
86  vtkGetObjectMacro(LandmarkTransform, vtkLandmarkTransform);
88 
90 
93  vtkGetObjectMacro(MeanPoints, vtkPoints);
95 
97 
103  vtkSetMacro(StartFromCentroid, bool);
104  vtkGetMacro(StartFromCentroid, bool);
105  vtkBooleanMacro(StartFromCentroid, bool);
107 
109 
118  vtkSetMacro(OutputPointsPrecision, int);
119  vtkGetMacro(OutputPointsPrecision, int);
121 
122 protected:
124  ~vtkProcrustesAlignmentFilter() override;
125 
130 
132 
134 
137 
138 private:
140  void operator=(const vtkProcrustesAlignmentFilter&) = delete;
141 };
142 
143 #endif
Store vtkAlgorithm input/output information.
aligns a set of pointsets together
concrete class for storing a set of points
Definition: vtkPointSet.h:69
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:39
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:39