#include <vtkLandmarkTransform.h>
Inheritance diagram for vtkLandmarkTransform:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | SetSourceLandmarks (vtkPoints *points) |
void | SetTargetLandmarks (vtkPoints *points) |
virtual vtkPoints * | GetSourceLandmarks () |
virtual vtkPoints * | GetTargetLandmarks () |
virtual void | SetMode (int) |
void | SetModeToRigidBody () |
void | SetModeToSimilarity () |
virtual int | GetMode () |
const char * | GetModeAsString () |
void | Inverse () |
unsigned long | GetMTime () |
vtkAbstractTransform * | MakeTransform () |
Static Public Methods | |
vtkLandmarkTransform * | New () |
int | IsTypeOf (const char *type) |
vtkLandmarkTransform * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkLandmarkTransform () | |
~vtkLandmarkTransform () | |
vtkLandmarkTransform (const vtkLandmarkTransform &) | |
void | operator= (const vtkLandmarkTransform &) |
void | InternalUpdate () |
void | InternalDeepCopy (vtkAbstractTransform *transform) |
Protected Attributes | |
vtkPoints * | SourceLandmarks |
vtkPoints * | TargetLandmarks |
int | Mode |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkLinearTransform. |
|
Get the MTime. Reimplemented from vtkAbstractTransform. |
|
This method does no type checking, use DeepCopy instead. Reimplemented from vtkHomogeneousTransform. |
|
Perform any subclass-specific Update. Reimplemented from vtkAbstractTransform. |
|
Invert the transformation. This is done by switching the source and target landmarks. Implements vtkAbstractTransform. |
|
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 vtkLinearTransform. |
|
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 vtkLinearTransform. |
|
Make another transform of the same type. Implements vtkAbstractTransform. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkLinearTransform. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkLinearTransform. |
|
Set the number of degrees of freedom to constrain the solution to. Rigidbody: rotation and translation only. Similarity: rotation, translation and isotropic scaling. The default is similarity. |
|
Specify the source and target landmark sets. The two sets must have the same number of points. If you add or change points in these objects, you must call Modified() on them or the transformation might not update. |