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

vtkImageButterworthLowPass - Frequency domain Low pass. More...

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

List of all members.

Public Member Functions

 vtkImageButterworthLowPass (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkImageButterworthLowPass ()
 Undocumented Block.
virtual double[] GetCutOff ()
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
virtual void GetCutOff (ref double _arg1, ref double _arg2, ref double _arg3)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
virtual void GetCutOff (IntPtr _arg)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
virtual int GetOrder ()
 The order determines sharpness of the cutoff curve.
double GetXCutOff ()
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
double GetYCutOff ()
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
double GetZCutOff ()
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
override int IsA (string type)
 Undocumented Block.
new vtkImageButterworthLowPass NewInstance ()
 Undocumented Block.
virtual void SetCutOff (double _arg1, double _arg2, double _arg3)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
virtual void SetCutOff (IntPtr _arg)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
void SetCutOff (double v)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
virtual void SetOrder (int _arg)
 The order determines sharpness of the cutoff curve.
void SetXCutOff (double v)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
void SetYCutOff (double v)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).
void SetZCutOff (double v)
 Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "26vtkImageButterworthLowPass"
 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 vtkImageButterworthLowPass_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkImageButterworthLowPass_GetCutOff_01 (HandleRef pThis)
static internal void vtkImageButterworthLowPass_GetCutOff_02 (HandleRef pThis, ref double _arg1, ref double _arg2, ref double _arg3)
static internal void vtkImageButterworthLowPass_GetCutOff_03 (HandleRef pThis, IntPtr _arg)
static internal int vtkImageButterworthLowPass_GetOrder_04 (HandleRef pThis)
static internal double vtkImageButterworthLowPass_GetXCutOff_05 (HandleRef pThis)
static internal double vtkImageButterworthLowPass_GetYCutOff_06 (HandleRef pThis)
static internal double vtkImageButterworthLowPass_GetZCutOff_07 (HandleRef pThis)
static internal int vtkImageButterworthLowPass_IsA_08 (HandleRef pThis, string type)
static internal int vtkImageButterworthLowPass_IsTypeOf_09 (string type)
static internal IntPtr vtkImageButterworthLowPass_NewInstance_11 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkImageButterworthLowPass_SafeDownCast_12 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkImageButterworthLowPass_SetCutOff_13 (HandleRef pThis, double _arg1, double _arg2, double _arg3)
static internal void vtkImageButterworthLowPass_SetCutOff_14 (HandleRef pThis, IntPtr _arg)
static internal void vtkImageButterworthLowPass_SetCutOff_15 (HandleRef pThis, double v)
static internal void vtkImageButterworthLowPass_SetOrder_16 (HandleRef pThis, int _arg)
static internal void vtkImageButterworthLowPass_SetXCutOff_17 (HandleRef pThis, double v)
static internal void vtkImageButterworthLowPass_SetYCutOff_18 (HandleRef pThis, double v)
static internal void vtkImageButterworthLowPass_SetZCutOff_19 (HandleRef pThis, double v)

Static Private Member Functions

static vtkImageButterworthLowPass ()
 Automatically generated type registration mechanics.

Detailed Description

vtkImageButterworthLowPass - Frequency domain Low pass.

Description This filter only works on an image after it has been converted to frequency domain by a vtkImageFFT filter. A vtkImageRFFT filter can be used to convert the output back into the spatial domain. vtkImageButterworthLowPass the high frequency components are attenuated. Input and output are in doubles, with two components (complex numbers). out(i, j) = (1 + pow(CutOff/Freq(i,j), 2*Order));


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass ( 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.vtkImageButterworthLowPass.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.vtkThreadedImageAlgorithm.

virtual double [] Kitware.VTK.vtkImageButterworthLowPass.GetCutOff ( ) [virtual]

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

virtual void Kitware.VTK.vtkImageButterworthLowPass.GetCutOff ( ref double  _arg1,
ref double  _arg2,
ref double  _arg3 
) [virtual]

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

virtual void Kitware.VTK.vtkImageButterworthLowPass.GetCutOff ( IntPtr  _arg) [virtual]

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

The order determines sharpness of the cutoff curve.

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkThreadedImageAlgorithm.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkThreadedImageAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkThreadedImageAlgorithm.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkThreadedImageAlgorithm.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkImageButterworthLowPass.SetCutOff ( double  _arg1,
double  _arg2,
double  _arg3 
) [virtual]

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

virtual void Kitware.VTK.vtkImageButterworthLowPass.SetCutOff ( IntPtr  _arg) [virtual]

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

virtual void Kitware.VTK.vtkImageButterworthLowPass.SetOrder ( int  _arg) [virtual]

The order determines sharpness of the cutoff curve.

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

Set/Get the cutoff frequency for each axis. The values are specified in the order X, Y, Z, Time. Units: Cycles per world unit (as defined by the data spacing).

static internal IntPtr Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_GetCutOff_01 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_GetCutOff_02 ( HandleRef  pThis,
ref double  _arg1,
ref double  _arg2,
ref double  _arg3 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_GetCutOff_03 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal int Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_GetOrder_04 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_GetXCutOff_05 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_GetYCutOff_06 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_GetZCutOff_07 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_IsA_08 ( HandleRef  pThis,
string  type 
) [private]
static internal IntPtr Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_NewInstance_11 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SafeDownCast_12 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SetCutOff_13 ( HandleRef  pThis,
double  _arg1,
double  _arg2,
double  _arg3 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SetCutOff_14 ( HandleRef  pThis,
IntPtr  _arg 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SetCutOff_15 ( HandleRef  pThis,
double  v 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SetOrder_16 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SetXCutOff_17 ( HandleRef  pThis,
double  v 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SetYCutOff_18 ( HandleRef  pThis,
double  v 
) [private]
static internal void Kitware.VTK.vtkImageButterworthLowPass.vtkImageButterworthLowPass_SetZCutOff_19 ( HandleRef  pThis,
double  v 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkImageButterworthLowPass.MRClassNameKey = "26vtkImageButterworthLowPass" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkThreadedImageAlgorithm.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkThreadedImageAlgorithm.


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