#include <vtkImageBlockWriter.h>
Inheritance diagram for vtkImageBlockWriter:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetDivisions (int, int, int) |
virtual void | SetDivisions (int[3]) |
virtual int * | GetDivisions () |
virtual void | GetDivisions (int &, int &, int &) |
virtual void | GetDivisions (int[3]) |
virtual void | SetOverlap (int) |
virtual int | GetOverlap () |
void | SetInput (vtkImageData *input) |
vtkImageData * | GetInput () |
virtual void | SetFilePattern (const char *) |
virtual char * | GetFilePattern () |
void | Write () |
Static Public Methods | |
vtkImageBlockWriter * | New () |
int | IsTypeOf (const char *type) |
vtkImageBlockWriter * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkImageBlockWriter () | |
~vtkImageBlockWriter () | |
vtkImageBlockWriter (const vtkImageBlockWriter &) | |
void | operator= (const vtkImageBlockWriter &) |
Protected Attributes | |
char * | FilePattern |
int | Divisions [3] |
int | Overlap |
Experimenting with different file formats. This one saves an image in multiple files. I am allowing overlap between file for efficiency.
|
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 vtkProcessObject. |
|
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 vtkProcessObject. |
|
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 vtkProcessObject. |
|
Instantiate object with no start, end, or progress methods. Reimplemented from vtkProcessObject. |
|
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 vtkProcessObject. |
|
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 vtkProcessObject. |
|
The whole extent is broken up into this many divisions along each axis. |
|
This printf pattern should take three integers, one for each axis. |
|
This writer takes images as input. |
|
The number of points along any axis that belong to more than one piece. |
|
Write the files. |