1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
Usage
vtkImplicitFunctionToImageStencil will convert a
vtkImplicitFunction into a stencil that can be used with
vtkImageStencil or with other classes that apply a stencil
to an image.
To create an instance of class
vtkImplicitFunctionToImageStencil, simply invoke its
constructor as follows
obj = vtkImplicitFunctionToImageStencil
Methods
The class vtkImplicitFunctionToImageStencil has several
methods that can be used. They are listed below. Note that
the documentation is translated automatically from the VTK
sources, and may not be completely intelligible. When in
doubt, consult the VTK website. In the methods listed below,
obj is an instance of the vtkImplicitFunctionToImageStencil
class.
* string = obj.GetClassName ()
* int = obj.IsA (string name)
* vtkImplicitFunctionToImageStencil = obj.NewInstance ()
* vtkImplicitFunctionToImageStencil = obj.SafeDownCast
(vtkObject o)
* obj.SetInput (vtkImplicitFunction ) - Specify the implicit
function to convert into a stencil.
* vtkImplicitFunction = obj.GetInput () - Specify the
implicit function to convert into a stencil.
* obj.SetInformationInput (vtkImageData ) - Set a
vtkImageData that has the Spacing, Origin, and WholeExtent
that will be used for the stencil. This input should be
set to the image that you wish to apply the stencil to. If
you use this method, then any values set with the
SetOutputSpacing, SetOutputOrigin, and
SetOutputWholeExtent methods will be ignored.
* vtkImageData = obj.GetInformationInput () - Set a
vtkImageData that has the Spacing, Origin, and WholeExtent
that will be used for the stencil. This input should be
set to the image that you wish to apply the stencil to. If
you use this method, then any values set with the
SetOutputSpacing, SetOutputOrigin, and
SetOutputWholeExtent methods will be ignored.
* obj.SetOutputOrigin (double , double , double ) - Set the
Origin to be used for the stencil. It should be set to the
Origin of the image you intend to apply the stencil to.
The default value is (0,0,0).
* obj.SetOutputOrigin (double a[3]) - Set the Origin to be
used for the stencil. It should be set to the Origin of
the image you intend to apply the stencil to. The default
value is (0,0,0).
* double = obj. GetOutputOrigin () - Set the Origin to be
used for the stencil. It should be set to the Origin of
the image you intend to apply the stencil to. The default
value is (0,0,0).
* obj.SetOutputSpacing (double , double , double ) - Set the
Spacing to be used for the stencil. It should be set to
the Spacing of the image you intend to apply the stencil
to. The default value is (1,1,1)
* obj.SetOutputSpacing (double a[3]) - Set the Spacing to be
used for the stencil. It should be set to the Spacing of
the image you intend to apply the stencil to. The default
value is (1,1,1)
* double = obj. GetOutputSpacing () - Set the Spacing to be
used for the stencil. It should be set to the Spacing of
the image you intend to apply the stencil to. The default
value is (1,1,1)
* obj.SetOutputWholeExtent (int , int , int , int , int ,
int ) - Set the whole extent for the stencil (anything
outside this extent will be considered to be "outside" the
stencil). If this is not set, then the stencil will always
use the requested UpdateExtent as the stencil extent.
* obj.SetOutputWholeExtent (int a[6]) - Set the whole extent
for the stencil (anything outside this extent will be
considered to be "outside" the stencil). If this is not
set, then the stencil will always use the requested
UpdateExtent as the stencil extent.
* int = obj. GetOutputWholeExtent () - Set the whole extent
for the stencil (anything outside this extent will be
considered to be "outside" the stencil). If this is not
set, then the stencil will always use the requested
UpdateExtent as the stencil extent.
* obj.SetThreshold (double ) - Set the threshold value for
the implicit function.
* double = obj.GetThreshold () - Set the threshold value for
the implicit function.
* FreeMat_Documentation
* Visualization_Toolkit_Imaging_Classes
* Generated on Thu Jul 25 2013 17:18:33 for FreeMat by
doxygen_ 1.8.1.1
|