ActiViz .NET
5.8.0
|
vtkTemporalInterpolator - interpolate datasets between time steps to produce a new dataset More...
Public Member Functions | |
vtkTemporalInterpolator (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkTemporalInterpolator () | |
Undocumented Block. | |
virtual double | GetDiscreteTimeStepInterval () |
If you require a discrete number of outputs steps, to be generated from an input source - for example, you required N steps separated by T, then set DiscreteTimeStepInterval to T and you will get TIME_RANGE/DiscreteTimeStepInterval steps This is a useful option to use if you have a dataset with one missing time step and wish to 'fill-in' the missing data with an interpolated value from the steps either side. | |
virtual int | GetResampleFactor () |
When ResampleFactor is a non zero positive integer, each pair of input time steps will be interpolated between with the number of steps specified. For example an input of 1,2,3,4,5 and a resample factor of 10, will produce steps 0f 1.0, 1.1, 1.2.....1.9, 2.0 etc NB. Irregular input steps will produce irregular output steps. Resample factor wuill only be used if DiscreteTimeStepInterval is zero otherwise the DiscreteTimeStepInterval takes precedence. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkTemporalInterpolator | NewInstance () |
Undocumented Block. | |
virtual void | SetDiscreteTimeStepInterval (double _arg) |
If you require a discrete number of outputs steps, to be generated from an input source - for example, you required N steps separated by T, then set DiscreteTimeStepInterval to T and you will get TIME_RANGE/DiscreteTimeStepInterval steps This is a useful option to use if you have a dataset with one missing time step and wish to 'fill-in' the missing data with an interpolated value from the steps either side. | |
virtual void | SetResampleFactor (int _arg) |
When ResampleFactor is a non zero positive integer, each pair of input time steps will be interpolated between with the number of steps specified. For example an input of 1,2,3,4,5 and a resample factor of 10, will produce steps 0f 1.0, 1.1, 1.2.....1.9, 2.0 etc NB. Irregular input steps will produce irregular output steps. Resample factor wuill only be used if DiscreteTimeStepInterval is zero otherwise the DiscreteTimeStepInterval takes precedence. | |
Static Public Member Functions | |
static new vtkTemporalInterpolator | New () |
Undocumented Block. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkTemporalInterpolator | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkTemporalInterpolator" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "23vtkTemporalInterpolator" |
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 | vtkTemporalInterpolator_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal double | vtkTemporalInterpolator_GetDiscreteTimeStepInterval_01 (HandleRef pThis) |
static internal int | vtkTemporalInterpolator_GetResampleFactor_02 (HandleRef pThis) |
static internal int | vtkTemporalInterpolator_IsA_03 (HandleRef pThis, string type) |
static internal int | vtkTemporalInterpolator_IsTypeOf_04 (string type) |
static internal IntPtr | vtkTemporalInterpolator_NewInstance_06 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkTemporalInterpolator_SafeDownCast_07 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkTemporalInterpolator_SetDiscreteTimeStepInterval_08 (HandleRef pThis, double _arg) |
static internal void | vtkTemporalInterpolator_SetResampleFactor_09 (HandleRef pThis, int _arg) |
Static Private Member Functions | |
static | vtkTemporalInterpolator () |
Automatically generated type registration mechanics. |
vtkTemporalInterpolator - interpolate datasets between time steps to produce a new dataset
Description vtkTemporalInterpolator interpolates between two time steps to produce new data for an arbitrary T. vtkTemporalInterpolator has three modes of operation. The default mode is to produce a continuous range of time values as output, which enables a filter downstream to request any value of T within the range. The second mode of operation is enabled by setting DiscreteTimeStepInterval to a non zero value. When this mode is activated, the filter will report a finite number of Time steps separated by deltaT between the original range of values. This mode is useful when a dataset of N time steps has one (or more) missing datasets for certain T values and you simply wish to smooth over the missing steps but otherwise use the original data. The third mode of operation is enabled by setting ResampleFactor to a non zero positive integer value. When this mode is activated, the filter will report a finite number of Time steps which contain the original steps, plus N new values between each original step 1/ResampleFactor time units apart. Note that if the input time steps are irregular, then using ResampleFactor will produce an irregular sequence of regular steps between each of the original irregular steps (clear enough, yes?).
Higher order interpolation schemes will require changes to the API as most calls assume only two timesteps are used.
static Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
override void Kitware.VTK.vtkTemporalInterpolator.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.vtkTemporalDataSetAlgorithm.
virtual double Kitware.VTK.vtkTemporalInterpolator.GetDiscreteTimeStepInterval | ( | ) | [virtual] |
If you require a discrete number of outputs steps, to be generated from an input source - for example, you required N steps separated by T, then set DiscreteTimeStepInterval to T and you will get TIME_RANGE/DiscreteTimeStepInterval steps This is a useful option to use if you have a dataset with one missing time step and wish to 'fill-in' the missing data with an interpolated value from the steps either side.
virtual int Kitware.VTK.vtkTemporalInterpolator.GetResampleFactor | ( | ) | [virtual] |
When ResampleFactor is a non zero positive integer, each pair of input time steps will be interpolated between with the number of steps specified. For example an input of 1,2,3,4,5 and a resample factor of 10, will produce steps 0f 1.0, 1.1, 1.2.....1.9, 2.0 etc NB. Irregular input steps will produce irregular output steps. Resample factor wuill only be used if DiscreteTimeStepInterval is zero otherwise the DiscreteTimeStepInterval takes precedence.
override int Kitware.VTK.vtkTemporalInterpolator.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTemporalDataSetAlgorithm.
static new int Kitware.VTK.vtkTemporalInterpolator.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTemporalDataSetAlgorithm.
static new vtkTemporalInterpolator Kitware.VTK.vtkTemporalInterpolator.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTemporalDataSetAlgorithm.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTemporalDataSetAlgorithm.
static new vtkTemporalInterpolator Kitware.VTK.vtkTemporalInterpolator.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkTemporalDataSetAlgorithm.
virtual void Kitware.VTK.vtkTemporalInterpolator.SetDiscreteTimeStepInterval | ( | double | _arg | ) | [virtual] |
If you require a discrete number of outputs steps, to be generated from an input source - for example, you required N steps separated by T, then set DiscreteTimeStepInterval to T and you will get TIME_RANGE/DiscreteTimeStepInterval steps This is a useful option to use if you have a dataset with one missing time step and wish to 'fill-in' the missing data with an interpolated value from the steps either side.
virtual void Kitware.VTK.vtkTemporalInterpolator.SetResampleFactor | ( | int | _arg | ) | [virtual] |
When ResampleFactor is a non zero positive integer, each pair of input time steps will be interpolated between with the number of steps specified. For example an input of 1,2,3,4,5 and a resample factor of 10, will produce steps 0f 1.0, 1.1, 1.2.....1.9, 2.0 etc NB. Irregular input steps will produce irregular output steps. Resample factor wuill only be used if DiscreteTimeStepInterval is zero otherwise the DiscreteTimeStepInterval takes precedence.
static internal double Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_GetDiscreteTimeStepInterval_01 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_GetResampleFactor_02 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_IsA_03 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_IsTypeOf_04 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_NewInstance_06 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_SafeDownCast_07 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_SetDiscreteTimeStepInterval_08 | ( | HandleRef | pThis, |
double | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkTemporalInterpolator.vtkTemporalInterpolator_SetResampleFactor_09 | ( | HandleRef | pThis, |
int | _arg | ||
) | [private] |
new readonly string Kitware.VTK.vtkTemporalInterpolator.MRClassNameKey = "23vtkTemporalInterpolator" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkTemporalDataSetAlgorithm.
new const string Kitware.VTK.vtkTemporalInterpolator.MRFullTypeName = "Kitware.VTK.vtkTemporalInterpolator" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkTemporalDataSetAlgorithm.