#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 |
|
Calculate the forward transform as well as the derivative. Implements vtkWarpTransform. |
|
If the InverseFlag is set to 0, then a call to InternalTransformPoint results in a call to ForwardTransformPoint. Implements vtkWarpTransform. |
|
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. |
|
Get the MTime. Reimplemented from vtkAbstractTransform. |
|
Specify the 'stiffness' of the spline. The default is 1.0. |
|
This method does no type checking, use DeepCopy instead. Reimplemented from vtkAbstractTransform. |
|
Prepare the transformation for application. Reimplemented from 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 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. |
|
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 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. |
|
Specify the radial basis function to use. The default is R2LogR which is what most people use as the thin plate spline. |
|
Set the radial basis function to a custom function. You must supply both the function and its derivative with respect to r. |
|
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. |