#include <vtkSliceCubes.h>
Inheritance diagram for vtkSliceCubes:
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | Write () |
void | Update () |
virtual void | SetReader (vtkVolumeReader *) |
virtual vtkVolumeReader * | GetReader () |
virtual void | SetFileName (const char *) |
virtual char * | GetFileName () |
virtual void | SetValue (float) |
virtual float | GetValue () |
virtual void | SetLimitsFileName (const char *) |
virtual char * | GetLimitsFileName () |
Static Public Methods | |
vtkSliceCubes * | New () |
int | IsTypeOf (const char *type) |
vtkSliceCubes * | SafeDownCast (vtkObject *o) |
Protected Methods | |
vtkSliceCubes () | |
~vtkSliceCubes () | |
vtkSliceCubes (const vtkSliceCubes &) | |
void | operator= (const vtkSliceCubes &) |
void | Execute () |
Protected Attributes | |
vtkVolumeReader * | Reader |
char * | FileName |
float | Value |
char * | LimitsFileName |
11 Sep 1995 1.12
vtkSliceCubes is a special version of the marching cubes filter. Instead of ingesting an entire volume at once it processes only four slices at a time. This way, it can generate isosurfaces from huge volumes. Also, the output of this object is written to a marching cubes triangle file. That way, output triangles do not need to be held in memory.
To use vtkSliceCubes you must specify an instance of vtkVolumeReader to read the data. Set this object up with the proper file prefix, image range, data origin, data dimensions, header size, data mask, and swap bytes flag. The vtkSliceCubes object will then take over and read slices as necessary. You also will need to specify the name of an output marching cubes triangle file.
|
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 vtkObject. |
|
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 vtkObject. |
|
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 vtkObject. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. |
|
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 vtkObject. |
|
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 vtkObject. |
|
Specify file name of marching cubes output file. |
|
Specify file name of marching cubes limits file. The limits file speeds up subsequent reading of output triangle file. |
|
Set/get object to read slices. |
|
Set/get isosurface contour value. |