VTK
|
aligns a set of pointsets together More...
#include <vtkProcrustesAlignmentFilter.h>
Public Types | |
typedef vtkMultiBlockDataSetAlgorithm | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkProcrustesAlignmentFilter * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual vtkLandmarkTransform * | GetLandmarkTransform () |
virtual vtkPoints * | GetMeanPoints () |
virtual void | SetStartFromCentroid (bool) |
virtual bool | GetStartFromCentroid () |
virtual void | StartFromCentroidOn () |
virtual void | StartFromCentroidOff () |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkProcrustesAlignmentFilter * | SafeDownCast (vtkObjectBase *o) |
static vtkProcrustesAlignmentFilter * | New () |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkProcrustesAlignmentFilter () | |
~vtkProcrustesAlignmentFilter () | |
virtual int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
Protected Attributes | |
vtkLandmarkTransform * | LandmarkTransform |
bool | StartFromCentroid |
vtkPoints * | MeanPoints |
aligns a set of pointsets together
vtkProcrustesAlignmentFilter is a filter that takes a set of pointsets (any object derived from vtkPointSet) and aligns them in a least-squares sense to their mutual mean. The algorithm is iterated until convergence, as the mean must be recomputed after each alignment.
vtkProcrustesAlignmentFilter requires a vtkMultiBlock input consisting of vtkPointSets as first level children.
The default (in vtkLandmarkTransform) is for a similarity alignment. For a rigid-body alignment (to build a 'size-and-shape' model) use:
GetLandmarkTransform()->SetModeToRigidBody().
Affine alignments are not normally used but are left in for completeness:
GetLandmarkTransform()->SetModeToAffine().
vtkProcrustesAlignmentFilter is an implementation of:
J.C. Gower (1975) Generalized Procrustes Analysis. Psychometrika, 40:33-51.
Definition at line 67 of file vtkProcrustesAlignmentFilter.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
Definition at line 70 of file vtkProcrustesAlignmentFilter.h.
vtkProcrustesAlignmentFilter::vtkProcrustesAlignmentFilter | ( | ) | [protected] |
vtkProcrustesAlignmentFilter::~vtkProcrustesAlignmentFilter | ( | ) | [protected] |
static int vtkProcrustesAlignmentFilter::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual int vtkProcrustesAlignmentFilter::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static vtkProcrustesAlignmentFilter* vtkProcrustesAlignmentFilter::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual vtkObjectBase* vtkProcrustesAlignmentFilter::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkMultiBlockDataSetAlgorithm.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
void vtkProcrustesAlignmentFilter::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Prints information about the state of the filter.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
static vtkProcrustesAlignmentFilter* vtkProcrustesAlignmentFilter::New | ( | ) | [static] |
Creates with similarity transform.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
virtual vtkLandmarkTransform* vtkProcrustesAlignmentFilter::GetLandmarkTransform | ( | ) | [virtual] |
Get the internal landmark transform. Use it to constrain the number of degrees of freedom of the alignment (i.e. rigid body, similarity, etc.). The default is a similarity alignment.
virtual vtkPoints* vtkProcrustesAlignmentFilter::GetMeanPoints | ( | ) | [virtual] |
Get the estimated mean point cloud
virtual void vtkProcrustesAlignmentFilter::SetStartFromCentroid | ( | bool | ) | [virtual] |
When on, the initial alignment is to the centroid of the cohort curves. When off, the alignment is to the centroid of the first input. Default is off for backward compatibility.
virtual bool vtkProcrustesAlignmentFilter::GetStartFromCentroid | ( | ) | [virtual] |
When on, the initial alignment is to the centroid of the cohort curves. When off, the alignment is to the centroid of the first input. Default is off for backward compatibility.
virtual void vtkProcrustesAlignmentFilter::StartFromCentroidOn | ( | ) | [virtual] |
When on, the initial alignment is to the centroid of the cohort curves. When off, the alignment is to the centroid of the first input. Default is off for backward compatibility.
virtual void vtkProcrustesAlignmentFilter::StartFromCentroidOff | ( | ) | [virtual] |
When on, the initial alignment is to the centroid of the cohort curves. When off, the alignment is to the centroid of the first input. Default is off for backward compatibility.
virtual int vtkProcrustesAlignmentFilter::RequestData | ( | vtkInformation * | , |
vtkInformationVector ** | , | ||
vtkInformationVector * | |||
) | [protected, virtual] |
Usual data generation method.
Reimplemented from vtkMultiBlockDataSetAlgorithm.
Definition at line 106 of file vtkProcrustesAlignmentFilter.h.
bool vtkProcrustesAlignmentFilter::StartFromCentroid [protected] |
Definition at line 108 of file vtkProcrustesAlignmentFilter.h.
vtkPoints* vtkProcrustesAlignmentFilter::MeanPoints [protected] |
Definition at line 110 of file vtkProcrustesAlignmentFilter.h.