#include <vtkThinPlateSplineTransform.h>
Inheritance diagram for vtkThinPlateSplineTransform:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual double | GetSigma () |
virtual void | SetSigma (double) |
void | SetBasis (int basis) |
virtual int | GetBasis () |
void | SetBasisToR () |
void | SetBasisToR2LogR () |
const char * | GetBasisAsString () |
void | SetBasisFunction (double(*U)(double r)) |
void | SetBasisDerivative (double(*dUdr)(double r, double &dU)) |
void | SetSourceLandmarks (vtkPoints *source) |
virtual vtkPoints * | GetSourceLandmarks () |
void | SetTargetLandmarks (vtkPoints *target) |
virtual vtkPoints * | GetTargetLandmarks () |
unsigned long | GetMTime () |
vtkAbstractTransform * | MakeTransform () |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkThinPlateSplineTransform * | SafeDownCast (vtkObject *o) |
vtkThinPlateSplineTransform * | New () |
Protected Methods | |
vtkThinPlateSplineTransform () | |
~vtkThinPlateSplineTransform () | |
vtkThinPlateSplineTransform (const vtkThinPlateSplineTransform &) | |
void | operator= (const vtkThinPlateSplineTransform &) |
void | InternalUpdate () |
void | InternalDeepCopy (vtkAbstractTransform *transform) |
void | ForwardTransformPoint (const float in[3], float out[3]) |
void | ForwardTransformPoint (const double in[3], double out[3]) |
void | ForwardTransformDerivative (const float in[3], float out[3], float derivative[3][3]) |
void | ForwardTransformDerivative (const double in[3], double out[3], double derivative[3][3]) |
Protected Attributes | |
double | Sigma |
vtkPoints * | SourceLandmarks |
vtkPoints * | TargetLandmarks |
double(* | BasisFunction )(double r) |
double(* | BasisDerivative )(double r, double &dUdr) |
int | Basis |
int | NumberOfPoints |
double ** | MatrixW |
Definition at line 76 of file vtkThinPlateSplineTransform.h.
|
|
|
|
|
Definition at line 129 of file vtkThinPlateSplineTransform.h. |
|
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 vtkWarpTransform. |
|
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 vtkWarpTransform. |
|
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 vtkWarpTransform. |
|
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 vtkWarpTransform. |
|
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 vtkWarpTransform. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
Specify the 'stiffness' of the spline. The default is 1.0. |
|
|
|
Specify the radial basis function to use. The default is R2LogR which is what most people use as the thin plate spline. |
|
|
|
Definition at line 91 of file vtkThinPlateSplineTransform.h. |
|
Definition at line 92 of file vtkThinPlateSplineTransform.h. |
|
|
|
Set the radial basis function to a custom function. You must supply both the function and its derivative with respect to r. Definition at line 98 of file vtkThinPlateSplineTransform.h. |
|
Definition at line 103 of file vtkThinPlateSplineTransform.h. |
|
Set the source landmarks for the warp. If you add or change the vtkPoints object, you must call Modified() on it or the transformation might not update. |
|
|
|
Set the target landmarks for the warp. If you add or change the vtkPoints object, you must call Modified() on it or the transformation might not update. |
|
|
|
Get the MTime. Reimplemented from vtkAbstractTransform. |
|
Make another transform of the same type. Reimplemented from vtkAbstractTransform. |
|
Definition at line 130 of file vtkThinPlateSplineTransform.h. |
|
Prepare the transformation for application. Reimplemented from vtkAbstractTransform. |
|
This method does no type checking, use DeepCopy instead. Reimplemented from vtkAbstractTransform. |
|
If the InverseFlag is set to 0, then a call to InternalTransformPoint results in a call to ForwardTransformPoint. Reimplemented from vtkWarpTransform. |
|
Reimplemented from vtkWarpTransform. |
|
Calculate the forward transform as well as the derivative. Reimplemented from vtkWarpTransform. |
|
Reimplemented from vtkWarpTransform. |
|
Definition at line 146 of file vtkThinPlateSplineTransform.h. |
|
Definition at line 147 of file vtkThinPlateSplineTransform.h. |
|
Definition at line 148 of file vtkThinPlateSplineTransform.h. |
|
|
|
|
|
Definition at line 155 of file vtkThinPlateSplineTransform.h. |
|
Definition at line 157 of file vtkThinPlateSplineTransform.h. |
|
Definition at line 158 of file vtkThinPlateSplineTransform.h. |