ActiViz .NET
5.8.0
|
vtkImageToImageFilter - Generic filter that has one input of type vtkImageData More...
Public Member Functions | |
vtkImageToImageFilter (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
void | BypassOff () |
Obsolete feature - do not use. | |
void | BypassOn () |
Obsolete feature - do not use. | |
virtual int | GetBypass () |
Obsolete feature - do not use. | |
vtkImageData | GetInput () |
Set the Input of a filter. | |
int | GetInputMemoryLimit () |
Get/Set the number of threads to create when rendering. | |
virtual int | GetNumberOfThreads () |
Get/Set the number of threads to create when rendering. | |
virtual int | GetNumberOfThreadsMaxValue () |
Get/Set the number of threads to create when rendering. | |
virtual int | GetNumberOfThreadsMinValue () |
Get/Set the number of threads to create when rendering. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkImageToImageFilter | NewInstance () |
Undocumented Block. | |
void | SetBypass (int arg0) |
Obsolete feature - do not use. | |
virtual void | SetInput (vtkImageData input) |
Set the Input of a filter. | |
void | SetInputMemoryLimit (int arg0) |
Get/Set the number of threads to create when rendering. | |
virtual void | SetNumberOfThreads (int _arg) |
Get/Set the number of threads to create when rendering. | |
virtual int | SplitExtent (IntPtr splitExt, IntPtr startExt, int num, int total) |
Putting this here until I merge graphics and imaging streaming. | |
virtual void | ThreadedExecute (vtkImageData inData, vtkImageData outData, IntPtr extent, int threadId) |
If the subclass does not define an Execute method, then the task will be broken up, multiple threads will be spawned, and each thread will call this method. It is public so that the thread functions can call this method. | |
Static Public Member Functions | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkImageToImageFilter | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkImageToImageFilter" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "21vtkImageToImageFilter" |
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 void | vtkImageToImageFilter_BypassOff_01 (HandleRef pThis) |
static internal void | vtkImageToImageFilter_BypassOn_02 (HandleRef pThis) |
static internal int | vtkImageToImageFilter_GetBypass_03 (HandleRef pThis) |
static internal IntPtr | vtkImageToImageFilter_GetInput_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkImageToImageFilter_GetInputMemoryLimit_05 (HandleRef pThis) |
static internal int | vtkImageToImageFilter_GetNumberOfThreads_06 (HandleRef pThis) |
static internal int | vtkImageToImageFilter_GetNumberOfThreadsMaxValue_07 (HandleRef pThis) |
static internal int | vtkImageToImageFilter_GetNumberOfThreadsMinValue_08 (HandleRef pThis) |
static internal int | vtkImageToImageFilter_IsA_09 (HandleRef pThis, string type) |
static internal int | vtkImageToImageFilter_IsTypeOf_10 (string type) |
static internal IntPtr | vtkImageToImageFilter_NewInstance_11 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkImageToImageFilter_SafeDownCast_12 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkImageToImageFilter_SetBypass_13 (HandleRef pThis, int arg0) |
static internal void | vtkImageToImageFilter_SetInput_14 (HandleRef pThis, HandleRef input) |
static internal void | vtkImageToImageFilter_SetInputMemoryLimit_15 (HandleRef pThis, int arg0) |
static internal void | vtkImageToImageFilter_SetNumberOfThreads_16 (HandleRef pThis, int _arg) |
static internal int | vtkImageToImageFilter_SplitExtent_17 (HandleRef pThis, IntPtr splitExt, IntPtr startExt, int num, int total) |
static internal void | vtkImageToImageFilter_ThreadedExecute_18 (HandleRef pThis, HandleRef inData, HandleRef outData, IntPtr extent, int threadId) |
Static Private Member Functions | |
static | vtkImageToImageFilter () |
Automatically generated type registration mechanics. |
vtkImageToImageFilter - Generic filter that has one input of type vtkImageData
Description vtkImageToImageFilter is a filter superclass that hides much of the pipeline complexity. It handles breaking the pipeline execution into smaller extents so that the vtkImageData limits are observed. It also provides support for multithreading. If you don't need any of this functionality, consider using vtkSimpleImageToImageFilter instead. Warning This used to be the parent class for most imaging filter in VTK4.x, now this role has been replaced by vtkImageAlgorithm. You should consider using vtkImageAlgorithm instead, when writing filter for VTK5 and above. This class was kept to ensure full backward compatibility.
vtkSimpleImageToImageFilter vtkImageSpatialFilter vtkImageAlgorithm
static Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Obsolete feature - do not use.
Obsolete feature - do not use.
override void Kitware.VTK.vtkImageToImageFilter.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.vtkImageSource.
Reimplemented in Kitware.VTK.vtkImageSpatialFilter.
virtual int Kitware.VTK.vtkImageToImageFilter.GetBypass | ( | ) | [virtual] |
Obsolete feature - do not use.
Set the Input of a filter.
Get/Set the number of threads to create when rendering.
virtual int Kitware.VTK.vtkImageToImageFilter.GetNumberOfThreads | ( | ) | [virtual] |
Get/Set the number of threads to create when rendering.
virtual int Kitware.VTK.vtkImageToImageFilter.GetNumberOfThreadsMaxValue | ( | ) | [virtual] |
Get/Set the number of threads to create when rendering.
virtual int Kitware.VTK.vtkImageToImageFilter.GetNumberOfThreadsMinValue | ( | ) | [virtual] |
Get/Set the number of threads to create when rendering.
override int Kitware.VTK.vtkImageToImageFilter.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImageSource.
Reimplemented in Kitware.VTK.vtkImageSpatialFilter.
static new int Kitware.VTK.vtkImageToImageFilter.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImageSource.
Reimplemented in Kitware.VTK.vtkImageSpatialFilter.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImageSource.
Reimplemented in Kitware.VTK.vtkImageSpatialFilter.
static new vtkImageToImageFilter Kitware.VTK.vtkImageToImageFilter.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkImageSource.
Reimplemented in Kitware.VTK.vtkImageSpatialFilter.
void Kitware.VTK.vtkImageToImageFilter.SetBypass | ( | int | arg0 | ) |
Obsolete feature - do not use.
virtual void Kitware.VTK.vtkImageToImageFilter.SetInput | ( | vtkImageData | input | ) | [virtual] |
Set the Input of a filter.
void Kitware.VTK.vtkImageToImageFilter.SetInputMemoryLimit | ( | int | arg0 | ) |
Get/Set the number of threads to create when rendering.
virtual void Kitware.VTK.vtkImageToImageFilter.SetNumberOfThreads | ( | int | _arg | ) | [virtual] |
Get/Set the number of threads to create when rendering.
virtual int Kitware.VTK.vtkImageToImageFilter.SplitExtent | ( | IntPtr | splitExt, |
IntPtr | startExt, | ||
int | num, | ||
int | total | ||
) | [virtual] |
Putting this here until I merge graphics and imaging streaming.
virtual void Kitware.VTK.vtkImageToImageFilter.ThreadedExecute | ( | vtkImageData | inData, |
vtkImageData | outData, | ||
IntPtr | extent, | ||
int | threadId | ||
) | [virtual] |
If the subclass does not define an Execute method, then the task will be broken up, multiple threads will be spawned, and each thread will call this method. It is public so that the thread functions can call this method.
static internal void Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_BypassOff_01 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_BypassOn_02 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_GetBypass_03 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_GetInput_04 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_GetInputMemoryLimit_05 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_GetNumberOfThreads_06 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_GetNumberOfThreadsMaxValue_07 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_GetNumberOfThreadsMinValue_08 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_IsA_09 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_IsTypeOf_10 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_NewInstance_11 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_SafeDownCast_12 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_SetBypass_13 | ( | HandleRef | pThis, |
int | arg0 | ||
) | [private] |
static internal void Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_SetInput_14 | ( | HandleRef | pThis, |
HandleRef | input | ||
) | [private] |
static internal void Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_SetInputMemoryLimit_15 | ( | HandleRef | pThis, |
int | arg0 | ||
) | [private] |
static internal void Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_SetNumberOfThreads_16 | ( | HandleRef | pThis, |
int | _arg | ||
) | [private] |
static internal int Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_SplitExtent_17 | ( | HandleRef | pThis, |
IntPtr | splitExt, | ||
IntPtr | startExt, | ||
int | num, | ||
int | total | ||
) | [private] |
static internal void Kitware.VTK.vtkImageToImageFilter.vtkImageToImageFilter_ThreadedExecute_18 | ( | HandleRef | pThis, |
HandleRef | inData, | ||
HandleRef | outData, | ||
IntPtr | extent, | ||
int | threadId | ||
) | [private] |
new readonly string Kitware.VTK.vtkImageToImageFilter.MRClassNameKey = "21vtkImageToImageFilter" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImageSource.
Reimplemented in Kitware.VTK.vtkImageSpatialFilter.
new const string Kitware.VTK.vtkImageToImageFilter.MRFullTypeName = "Kitware.VTK.vtkImageToImageFilter" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkImageSource.
Reimplemented in Kitware.VTK.vtkImageSpatialFilter.