VTK
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 =========================================================================*/
58 #ifndef vtkProcrustesAlignmentFilter_h
59 #define vtkProcrustesAlignmentFilter_h
60 
61 #include "vtkFiltersHybridModule.h" // For export macro
63 
65 class vtkPointSet;
66 class vtkPoints;
67 
68 class VTKFILTERSHYBRID_EXPORT vtkProcrustesAlignmentFilter : public vtkMultiBlockDataSetAlgorithm
69 {
70 public:
72 
76  void PrintSelf(ostream& os, vtkIndent indent) override;
77 
82 
84 
89  vtkGetObjectMacro(LandmarkTransform,vtkLandmarkTransform);
91 
93 
96  vtkGetObjectMacro(MeanPoints,vtkPoints);
98 
100 
106  vtkSetMacro(StartFromCentroid, bool);
107  vtkGetMacro(StartFromCentroid, bool);
108  vtkBooleanMacro(StartFromCentroid, bool);
110 
112 
121  vtkSetMacro(OutputPointsPrecision,int);
122  vtkGetMacro(OutputPointsPrecision,int);
124 
125 protected:
127  ~vtkProcrustesAlignmentFilter() override;
128 
133 
135 
137 
140 
141 private:
143  void operator=(const vtkProcrustesAlignmentFilter&) = delete;
144 };
145 
146 #endif
147 
148 
Store vtkAlgorithm input/output information.
aligns a set of pointsets together
abstract class for specifying dataset behavior
Definition: vtkPointSet.h:42
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