#include <vtkImageMultipleInputFilter.h>
Inheritance diagram for vtkImageMultipleInputFilter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetInput (int num, vtkImageData *input) |
virtual void | AddInput (vtkImageData *input) |
virtual void | RemoveInput (vtkImageData *input) |
vtkImageData * | GetInput (int num) |
vtkImageData * | GetInput () |
virtual void | SetBypass (int) |
virtual int | GetBypass () |
virtual void | BypassOn () |
virtual void | BypassOff () |
virtual void | SetNumberOfThreads (int) |
virtual int | GetNumberOfThreads () |
virtual int | SplitExtent (int splitExt[6], int startExt[6], int num, int total) |
virtual void | ThreadedExecute (vtkImageData **inDatas, vtkImageData *outData, int extent[6], int threadId) |
Static Public Methods | |
vtkImageMultipleInputFilter * | New () |
int | IsTypeOf (const char *type) |
vtkImageMultipleInputFilter * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkImageMultipleInputFilter () | |
~vtkImageMultipleInputFilter () | |
vtkImageMultipleInputFilter (const vtkImageMultipleInputFilter &) | |
void | operator= (const vtkImageMultipleInputFilter &) |
void | ComputeInputUpdateExtents (vtkDataObject *output) |
virtual void | ComputeInputUpdateExtent (int inExt[6], int outExt[6], int whichInput) |
void | Execute () |
void | Execute (vtkImageData *outData) |
virtual void | Execute (vtkImageData **inDatas, vtkImageData *outData) |
void | ExecuteInformation () |
virtual void | ExecuteInformation (vtkImageData **, vtkImageData *) |
virtual void | ExecuteImageInformation () |
Protected Attributes | |
vtkMultiThreader * | Threader |
int | Bypass |
int | NumberOfThreads |
int | LegacyHack |
|
Adds an input to the first null position in the input list. Expands the list memory if necessary |
|
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. |
|
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 vtkImageAppend. |
|
Get one input to this filter. |
|
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 vtkImageAppend. |
|
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 vtkImageAppend. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkImageSource. Reimplemented in vtkImageAppend. |
|
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 vtkImageAppend. |
|
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 vtkImageAppend. |
|
Turning bypass on will cause the filter to turn off and simply pass the data from the first input (input0) through. It is implemented for consistency with vtkImageToImageFilter. |
|
Set an Input of this filter. Reimplemented in vtkImageDifference. |
|
Get/Set the number of threads to create when rendering |
|
Putting this here until I merge graphics and imaging streaming. |
|
The execute method created by the subclass. This is kept public instead of protected since it is called from a non-member thread function. Reimplemented in vtkImageAppend. |