#include <vtkImageFilter.h>
Inheritance diagram for vtkImageToImageFilter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetInput (vtkImageData *input) |
vtkImageData * | GetInput () |
void | SetBypass (int) |
void | BypassOn () |
void | BypassOff () |
virtual int | GetBypass () |
virtual void | ThreadedExecute (vtkImageData *inData, vtkImageData *outData, int extent[6], int threadId) |
virtual void | SetNumberOfThreads (int) |
virtual int | GetNumberOfThreads () |
void | SetInputMemoryLimit (int) |
long | GetInputMemoryLimit () |
virtual int | SplitExtent (int splitExt[6], int startExt[6], int num, int total) |
virtual void | UpdateImageInformation () |
virtual void | ExecuteImageInformation () |
Static Public Methods | |
vtkImageToImageFilter * | New () |
int | IsTypeOf (const char *type) |
vtkImageToImageFilter * | SafeDownCast (vtkObject *o) |
Public Attributes | |
int | LegacyHack |
Protected Methods | |
vtkImageToImageFilter () | |
~vtkImageToImageFilter () | |
vtkImageToImageFilter (const vtkImageToImageFilter &) | |
void | operator= (const vtkImageToImageFilter &) |
void | ExecuteInformation () |
virtual void | ExecuteInformation (vtkImageData *inData, vtkImageData *outData) |
void | Execute () |
void | Execute (vtkImageData *outData) |
virtual void | Execute (vtkImageData *inData, vtkImageData *outData) |
void | ComputeInputUpdateExtents (vtkDataObject *output) |
virtual void | ComputeInputUpdateExtent (int inExt[6], int outExt[6]) |
Protected Attributes | |
vtkMultiThreader * | Threader |
int | Bypass |
int | BypassWasOn |
int | NumberOfThreads |
|
What is the input update extent that is required to produce the desired output? By default, the whole input is always required but this is overridden in many subclasses. Reimplemented from vtkSource. Reimplemented in vtkImageIterateFilter. |
|
Legacy method. May go away at any time. You should call ExecuteInformation which should call vtkImageToImageFilter::ExecuteInformation to set up defaults, and the change what needs to be changed. |
|
Return the class name as a string. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. Reimplemented in vtkImageReslice. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. Reimplemented in vtkImageReslice. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. Reimplemented in vtkImageReslice. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkImageSource. Reimplemented in vtkImageReslice. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkSource. Reimplemented in vtkImageReslice. |
|
Will cast the supplied object to vtkObject* is this is a safe operation (i.e., a safe downcast); otherwise NULL is returned. This method is defined in all subclasses of vtkObject with the vtkTypeMacro found in vtkSetGet.h. Reimplemented from vtkImageSource. Reimplemented in vtkImageReslice. |
|
Obsolete feature - do not use. |
|
Set the Input of a filter. Reimplemented in vtkImageOpenClose3D. |
|
Get/Set the number of threads to create when rendering |
|
Putting this here until I merge graphics and imaging streaming. Reimplemented in vtkImageFFT. |
|
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. Reimplemented in vtkImageReslice. |
|
Legacy method. May go away at any time. It should be called UpdateInformation. |