Section: Visualization Toolkit Imaging Classes
To create an instance of class vtkImageGradient, simply invoke its constructor as follows
obj = vtkImageGradient
obj
is an instance of the vtkImageGradient class.
string = obj.GetClassName ()
int = obj.IsA (string name)
vtkImageGradient = obj.NewInstance ()
vtkImageGradient = obj.SafeDownCast (vtkObject o)
obj.SetDimensionality (int )
- Determines how the input is interpreted (set of 2d slices ...)
int = obj.GetDimensionalityMinValue ()
- Determines how the input is interpreted (set of 2d slices ...)
int = obj.GetDimensionalityMaxValue ()
- Determines how the input is interpreted (set of 2d slices ...)
int = obj.GetDimensionality ()
- Determines how the input is interpreted (set of 2d slices ...)
obj.SetHandleBoundaries (int )
- Get/Set whether to handle boundaries. If enabled, boundary
pixels are treated as duplicated so that central differencing
works for the boundary pixels. If disabled, the output whole
extent of the image is reduced by one pixel.
int = obj.GetHandleBoundaries ()
- Get/Set whether to handle boundaries. If enabled, boundary
pixels are treated as duplicated so that central differencing
works for the boundary pixels. If disabled, the output whole
extent of the image is reduced by one pixel.
obj.HandleBoundariesOn ()
- Get/Set whether to handle boundaries. If enabled, boundary
pixels are treated as duplicated so that central differencing
works for the boundary pixels. If disabled, the output whole
extent of the image is reduced by one pixel.
obj.HandleBoundariesOff ()
- Get/Set whether to handle boundaries. If enabled, boundary
pixels are treated as duplicated so that central differencing
works for the boundary pixels. If disabled, the output whole
extent of the image is reduced by one pixel.