ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkProcrustesAlignmentFilter Class Reference

vtkProcrustesAlignmentFilter - aligns a set of pointsets together More...

Inheritance diagram for Kitware.VTK.vtkProcrustesAlignmentFilter:
[legend]
Collaboration diagram for Kitware.VTK.vtkProcrustesAlignmentFilter:
[legend]

List of all members.

Public Member Functions

 vtkProcrustesAlignmentFilter (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkProcrustesAlignmentFilter ()
 Creates with similarity transform.
vtkPointSet GetInput (int idx)
 Retrieve the input point set with index idx (usually only for pipeline tracing).
virtual vtkLandmarkTransform GetLandmarkTransform ()
 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 GetMeanPoints ()
 Get the estimated mean point cloud.
virtual bool GetStartFromCentroid ()
 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.
override int IsA (string type)
 Undocumented Block.
new vtkProcrustesAlignmentFilter NewInstance ()
 Undocumented Block.
new void SetInput (int idx, vtkPointSet p)
 Specify the input pointset with index idx. Call SetNumberOfInputs before calling this function.
new void SetInput (int idx, vtkDataObject input)
 Specify the input pointset with index idx. Call SetNumberOfInputs before calling this function.
void SetNumberOfInputs (int n)
 Specify how many pointsets are going to be given as input.
virtual void SetStartFromCentroid (bool _arg)
 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 StartFromCentroidOff ()
 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 StartFromCentroidOn ()
 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.

Static Public Member Functions

static new
vtkProcrustesAlignmentFilter 
New ()
 Creates with similarity transform.
static new int IsTypeOf (string type)
 Undocumented Block.
static new
vtkProcrustesAlignmentFilter 
SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkProcrustesAlignmentFilter"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "28vtkProcrustesAlignmentFilter"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkProcrustesAlignmentFilter_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProcrustesAlignmentFilter_GetInput_01 (HandleRef pThis, int idx, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProcrustesAlignmentFilter_GetLandmarkTransform_02 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProcrustesAlignmentFilter_GetMeanPoints_03 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal byte vtkProcrustesAlignmentFilter_GetStartFromCentroid_04 (HandleRef pThis)
static internal int vtkProcrustesAlignmentFilter_IsA_05 (HandleRef pThis, string type)
static internal int vtkProcrustesAlignmentFilter_IsTypeOf_06 (string type)
static internal IntPtr vtkProcrustesAlignmentFilter_NewInstance_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkProcrustesAlignmentFilter_SafeDownCast_09 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkProcrustesAlignmentFilter_SetInput_10 (HandleRef pThis, int idx, HandleRef p)
static internal void vtkProcrustesAlignmentFilter_SetInput_11 (HandleRef pThis, int idx, HandleRef input)
static internal void vtkProcrustesAlignmentFilter_SetNumberOfInputs_12 (HandleRef pThis, int n)
static internal void vtkProcrustesAlignmentFilter_SetStartFromCentroid_13 (HandleRef pThis, byte _arg)
static internal void vtkProcrustesAlignmentFilter_StartFromCentroidOff_14 (HandleRef pThis)
static internal void vtkProcrustesAlignmentFilter_StartFromCentroidOn_15 (HandleRef pThis)

Static Private Member Functions

static vtkProcrustesAlignmentFilter ()
 Automatically generated type registration mechanics.

Detailed Description

vtkProcrustesAlignmentFilter - aligns a set of pointsets together

Description

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.

Call SetNumberOfInputs(n) before calling SetInput(0) ... SetInput(n-1).

Retrieve the outputs using GetOutput(0) ... GetOutput(n-1).

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.

Caveats All of the input pointsets must have the same number of points.

Thanks Tim Hutton and Rasmus Paulsen who developed and contributed this class

vtkLandmarkTransform


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Creates with similarity transform.


Member Function Documentation

override void Kitware.VTK.vtkProcrustesAlignmentFilter.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

Retrieve the input point set with index idx (usually only for pipeline tracing).

Here is the call graph for this function:

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.

Here is the call graph for this function:

Get the estimated mean point cloud.

Here is the call graph for this function:

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.

override int Kitware.VTK.vtkProcrustesAlignmentFilter.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

static new int Kitware.VTK.vtkProcrustesAlignmentFilter.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

Creates with similarity transform.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

Here is the call graph for this function:

Specify the input pointset with index idx. Call SetNumberOfInputs before calling this function.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

Specify the input pointset with index idx. Call SetNumberOfInputs before calling this function.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

Specify how many pointsets are going to be given as input.

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.

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.

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.

static internal IntPtr Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_GetInput_01 ( HandleRef  pThis,
int  idx,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_GetLandmarkTransform_02 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_GetMeanPoints_03 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_IsA_05 ( HandleRef  pThis,
string  type 
) [private]
static internal IntPtr Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_NewInstance_08 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_SafeDownCast_09 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_SetInput_10 ( HandleRef  pThis,
int  idx,
HandleRef  p 
) [private]
static internal void Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_SetInput_11 ( HandleRef  pThis,
int  idx,
HandleRef  input 
) [private]
static internal void Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_SetNumberOfInputs_12 ( HandleRef  pThis,
int  n 
) [private]
static internal void Kitware.VTK.vtkProcrustesAlignmentFilter.vtkProcrustesAlignmentFilter_SetStartFromCentroid_13 ( HandleRef  pThis,
byte  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkProcrustesAlignmentFilter.MRClassNameKey = "28vtkProcrustesAlignmentFilter" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.

new const string Kitware.VTK.vtkProcrustesAlignmentFilter.MRFullTypeName = "Kitware.VTK.vtkProcrustesAlignmentFilter"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPointSetAlgorithm.


The documentation for this class was generated from the following file: