VTK  9.2.5
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 =========================================================================*/
74 #ifndef vtkProcrustesAlignmentFilter_h
75 #define vtkProcrustesAlignmentFilter_h
76 
77 #include "vtkFiltersHybridModule.h" // For export macro
79 
81 class vtkPointSet;
82 class vtkPoints;
83 
84 class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
85 {
86 public:
88 
92  void PrintSelf(ostream& os, vtkIndent indent) override;
93 
98 
100 
105  vtkGetObjectMacro(LandmarkTransform, vtkLandmarkTransform);
107 
109 
112  vtkGetObjectMacro(MeanPoints, vtkPoints);
114 
116 
122  vtkSetMacro(StartFromCentroid, bool);
123  vtkGetMacro(StartFromCentroid, bool);
124  vtkBooleanMacro(StartFromCentroid, bool);
126 
128 
137  vtkSetMacro(OutputPointsPrecision, int);
138  vtkGetMacro(OutputPointsPrecision, int);
140 
141 protected:
144 
149 
151 
153 
156 
157 private:
159  void operator=(const vtkProcrustesAlignmentFilter&) = delete;
160 };
161 
162 #endif
a simple class to control print indentation
Definition: vtkIndent.h:119
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:109
represent and manipulate 3D points
Definition: vtkPoints.h:149
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