#include <vtkImageAppend.h>
Inheritance diagram for vtkImageAppend:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetAppendAxis (int) |
virtual int | GetAppendAxis () |
virtual void | SetPreserveExtents (int) |
virtual int | GetPreserveExtents () |
virtual void | PreserveExtentsOn () |
virtual void | PreserveExtentsOff () |
Static Public Methods | |
vtkImageAppend * | New () |
int | IsTypeOf (const char *type) |
vtkImageAppend * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkImageAppend () | |
~vtkImageAppend () | |
vtkImageAppend (const vtkImageAppend &) | |
void | operator= (const vtkImageAppend &) |
void | ExecuteInformation (vtkImageData **inputs, vtkImageData *output) |
void | ComputeInputUpdateExtent (int inExt[6], int outExt[6], int whichInput) |
void | ExecuteInformation () |
void | ThreadedExecute (vtkImageData **inDatas, vtkImageData *outData, int extent[6], int id) |
void | InitOutput (int outExt[6], vtkImageData *outData) |
Protected Attributes | |
int | PreserveExtents |
int | AppendAxis |
int * | Shifts |
|
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 vtkImageMultipleInputFilter. |
|
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 vtkImageMultipleInputFilter. |
|
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 vtkImageMultipleInputFilter. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkImageMultipleInputFilter. |
|
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 vtkImageMultipleInputFilter. |
|
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 vtkImageMultipleInputFilter. |
|
This axis is expanded to hold the multiple images. |
|
By default "PreserveExtents" is off and the append axis is used. When "PreseveExtents" is on, the extent of the inputs is used to place the image in the output. The whole extent of the output is the union of the input whole extents. Any portion of the output not covered by the inputs is set to zero. The origin and spacing is taken from the first input. |
|
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 from vtkImageMultipleInputFilter. |