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.vtkGridTransform Class Reference

vtkGridTransform - a nonlinear warp transformation More...

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

List of all members.

Public Member Functions

 vtkGridTransform (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkGridTransform ()
 Undocumented Block.
virtual vtkImageData GetDisplacementGrid ()
 Set/Get the grid transform (the grid transform must have three components for displacement in x, y, and z respectively). The vtkGridTransform class will never modify the data.
virtual double GetDisplacementScale ()
 Set scale factor to be applied to the displacements. This is used primarily for grids which contain integer data types. Default: 1.
virtual double GetDisplacementShift ()
 Set a shift to be applied to the displacements. The shift is applied after the scale, i.e. x = scale*y + shift. Default: 0.
virtual int GetInterpolationMode ()
 Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.
string GetInterpolationModeAsString ()
 Internal functions for calculating the transformation.
override uint GetMTime ()
 Get the MTime.
override int IsA (string type)
 Undocumented Block.
override vtkAbstractTransform MakeTransform ()
 Make another transform of the same type.
new vtkGridTransform NewInstance ()
 Undocumented Block.
virtual void SetDisplacementGrid (vtkImageData arg0)
 Set/Get the grid transform (the grid transform must have three components for displacement in x, y, and z respectively). The vtkGridTransform class will never modify the data.
virtual void SetDisplacementScale (double _arg)
 Set scale factor to be applied to the displacements. This is used primarily for grids which contain integer data types. Default: 1.
virtual void SetDisplacementShift (double _arg)
 Set a shift to be applied to the displacements. The shift is applied after the scale, i.e. x = scale*y + shift. Default: 0.
void SetInterpolationMode (int mode)
 Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.
void SetInterpolationModeToCubic ()
 Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.
void SetInterpolationModeToLinear ()
 Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.
void SetInterpolationModeToNearestNeighbor ()
 Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.

Static Public Member Functions

static new vtkGridTransform New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkGridTransform SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "16vtkGridTransform"
 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 vtkGridTransform_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkGridTransform_GetDisplacementGrid_01 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal double vtkGridTransform_GetDisplacementScale_02 (HandleRef pThis)
static internal double vtkGridTransform_GetDisplacementShift_03 (HandleRef pThis)
static internal int vtkGridTransform_GetInterpolationMode_04 (HandleRef pThis)
static internal IntPtr vtkGridTransform_GetInterpolationModeAsString_05 (HandleRef pThis)
static internal uint vtkGridTransform_GetMTime_06 (HandleRef pThis)
static internal int vtkGridTransform_IsA_07 (HandleRef pThis, string type)
static internal int vtkGridTransform_IsTypeOf_08 (string type)
static internal IntPtr vtkGridTransform_MakeTransform_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkGridTransform_NewInstance_11 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkGridTransform_SafeDownCast_12 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkGridTransform_SetDisplacementGrid_13 (HandleRef pThis, HandleRef arg0)
static internal void vtkGridTransform_SetDisplacementScale_14 (HandleRef pThis, double _arg)
static internal void vtkGridTransform_SetDisplacementShift_15 (HandleRef pThis, double _arg)
static internal void vtkGridTransform_SetInterpolationMode_16 (HandleRef pThis, int mode)
static internal void vtkGridTransform_SetInterpolationModeToCubic_17 (HandleRef pThis)
static internal void vtkGridTransform_SetInterpolationModeToLinear_18 (HandleRef pThis)
static internal void vtkGridTransform_SetInterpolationModeToNearestNeighbor_19 (HandleRef pThis)

Static Private Member Functions

static vtkGridTransform ()
 Automatically generated type registration mechanics.

Detailed Description

vtkGridTransform - a nonlinear warp transformation

Description vtkGridTransform describes a nonlinear warp transformation as a set of displacement vectors sampled along a uniform 3D grid. Caveats The inverse grid transform is calculated using an iterative method, and is several times more expensive than the forward transform.

vtkThinPlateSplineTransform vtkGeneralTransform vtkTransformToGrid


Constructor & Destructor Documentation

static Kitware.VTK.vtkGridTransform.vtkGridTransform ( ) [static, private]

Automatically generated type registration mechanics.

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

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

Undocumented Block.


Member Function Documentation

override void Kitware.VTK.vtkGridTransform.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.vtkWarpTransform.

Set/Get the grid transform (the grid transform must have three components for displacement in x, y, and z respectively). The vtkGridTransform class will never modify the data.

Here is the call graph for this function:

Set scale factor to be applied to the displacements. This is used primarily for grids which contain integer data types. Default: 1.

Set a shift to be applied to the displacements. The shift is applied after the scale, i.e. x = scale*y + shift. Default: 0.

Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.

Internal functions for calculating the transformation.

override uint Kitware.VTK.vtkGridTransform.GetMTime ( ) [virtual]

Get the MTime.

Reimplemented from Kitware.VTK.vtkAbstractTransform.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkWarpTransform.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkWarpTransform.

Make another transform of the same type.

Reimplemented from Kitware.VTK.vtkAbstractTransform.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkWarpTransform.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkWarpTransform.

Here is the call graph for this function:

Set/Get the grid transform (the grid transform must have three components for displacement in x, y, and z respectively). The vtkGridTransform class will never modify the data.

virtual void Kitware.VTK.vtkGridTransform.SetDisplacementScale ( double  _arg) [virtual]

Set scale factor to be applied to the displacements. This is used primarily for grids which contain integer data types. Default: 1.

virtual void Kitware.VTK.vtkGridTransform.SetDisplacementShift ( double  _arg) [virtual]

Set a shift to be applied to the displacements. The shift is applied after the scale, i.e. x = scale*y + shift. Default: 0.

Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.

Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.

Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.

Set interpolation mode for sampling the grid. Higher-order interpolation allows you to use a sparser grid. Default: Linear.

static internal IntPtr Kitware.VTK.vtkGridTransform.vtkGridTransform_GetDisplacementGrid_01 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal double Kitware.VTK.vtkGridTransform.vtkGridTransform_GetDisplacementScale_02 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkGridTransform.vtkGridTransform_GetDisplacementShift_03 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkGridTransform.vtkGridTransform_GetInterpolationMode_04 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkGridTransform.vtkGridTransform_GetInterpolationModeAsString_05 ( HandleRef  pThis) [private]
static internal uint Kitware.VTK.vtkGridTransform.vtkGridTransform_GetMTime_06 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkGridTransform.vtkGridTransform_IsA_07 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkGridTransform.vtkGridTransform_IsTypeOf_08 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkGridTransform.vtkGridTransform_MakeTransform_09 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkGridTransform.vtkGridTransform_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkGridTransform.vtkGridTransform_NewInstance_11 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkGridTransform.vtkGridTransform_SafeDownCast_12 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkGridTransform.vtkGridTransform_SetDisplacementGrid_13 ( HandleRef  pThis,
HandleRef  arg0 
) [private]
static internal void Kitware.VTK.vtkGridTransform.vtkGridTransform_SetDisplacementScale_14 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkGridTransform.vtkGridTransform_SetDisplacementShift_15 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkGridTransform.vtkGridTransform_SetInterpolationMode_16 ( HandleRef  pThis,
int  mode 
) [private]
static internal void Kitware.VTK.vtkGridTransform.vtkGridTransform_SetInterpolationModeToCubic_17 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkGridTransform.vtkGridTransform_SetInterpolationModeToLinear_18 ( HandleRef  pThis) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkGridTransform.MRClassNameKey = "16vtkGridTransform" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkWarpTransform.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkWarpTransform.


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