vtkImageReader Class Reference

#include <vtkImageReader.h>

Inheritance diagram for vtkImageReader:

Inheritance graph
[legend]
Collaboration diagram for vtkImageReader:

Collaboration graph
[legend]

List of all members.


Detailed Description

Superclass of transformable binary file readers.

vtkImageReader provides methods needed to read a region from a file. It supports both transforms and masks on the input data, but as a result is more complicated and slower than its parent class vtkImageReader2.

See also:
vtkBMPReader vtkPNMReader vtkTIFFReader
Examples:
vtkImageReader (Examples)
Tests:
vtkImageReader (Tests)

Definition at line 42 of file vtkImageReader.h.


Public Types

typedef vtkImageReader2 Superclass

Public Member Functions

virtual const char * GetClassName ()
virtual int IsA (const char *type)
void PrintSelf (ostream &os, vtkIndent indent)
void ComputeInverseTransformedExtent (int inExtent[6], int outExtent[6])
void ComputeInverseTransformedIncrements (vtkIdType inIncr[3], vtkIdType outIncr[3])
int OpenAndSeekFile (int extent[6], int slice)
virtual void SetDataVOI (int, int, int, int, int, int)
virtual void SetDataVOI (int[6])
virtual int * GetDataVOI ()
virtual void GetDataVOI (int &, int &, int &, int &, int &, int &)
virtual void GetDataVOI (int[6])
virtual unsigned short GetDataMask ()
void SetDataMask (int val)
virtual void SetTransform (vtkTransform *)
virtual vtkTransformGetTransform ()
virtual void SetScalarArrayName (const char *)
virtual char * GetScalarArrayName ()

Static Public Member Functions

static vtkImageReaderNew ()
static int IsTypeOf (const char *type)
static vtkImageReaderSafeDownCast (vtkObject *o)

Protected Member Functions

 vtkImageReader ()
 ~vtkImageReader ()
void ComputeTransformedSpacing (double Spacing[3])
void ComputeTransformedOrigin (double origin[3])
void ComputeTransformedExtent (int inExtent[6], int outExtent[6])
void ComputeTransformedIncrements (vtkIdType inIncr[3], vtkIdType outIncr[3])
virtual int RequestInformation (vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
void ExecuteData (vtkDataObject *data)

Protected Attributes

unsigned short DataMask
vtkTransformTransform
int DataVOI [6]
char * ScalarArrayName

Member Typedef Documentation

Reimplemented from vtkImageReader2.

Reimplemented in vtkBMPReader, and vtkPNMReader.

Definition at line 46 of file vtkImageReader.h.


Constructor & Destructor Documentation

vtkImageReader::vtkImageReader (  )  [protected]

vtkImageReader::~vtkImageReader (  )  [protected]


Member Function Documentation

static vtkImageReader* vtkImageReader::New (  )  [static]

Create an object with Debug turned off, modified time initialized to zero, and reference counting on.

Reimplemented from vtkImageReader2.

Reimplemented in vtkBMPReader, and vtkPNMReader.

virtual const char* vtkImageReader::GetClassName (  )  [virtual]

Reimplemented from vtkImageReader2.

Reimplemented in vtkBMPReader, and vtkPNMReader.

static int vtkImageReader::IsTypeOf ( const char *  name  )  [static]

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 vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkImageReader2.

Reimplemented in vtkBMPReader, and vtkPNMReader.

virtual int vtkImageReader::IsA ( const char *  name  )  [virtual]

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 vtkTypeRevisionMacro found in vtkSetGet.h.

Reimplemented from vtkImageReader2.

Reimplemented in vtkBMPReader, and vtkPNMReader.

static vtkImageReader* vtkImageReader::SafeDownCast ( vtkObject o  )  [static]

Reimplemented from vtkImageReader2.

Reimplemented in vtkBMPReader, and vtkPNMReader.

void vtkImageReader::PrintSelf ( ostream &  os,
vtkIndent  indent 
) [virtual]

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 vtkImageReader2.

Reimplemented in vtkBMPReader, and vtkPNMReader.

virtual void vtkImageReader::SetDataVOI ( int  ,
int  ,
int  ,
int  ,
int  ,
int   
) [virtual]

Set/get the data VOI. You can limit the reader to only read a subset of the data.

virtual void vtkImageReader::SetDataVOI ( int  [6]  )  [virtual]

Set/get the data VOI. You can limit the reader to only read a subset of the data.

virtual int* vtkImageReader::GetDataVOI (  )  [virtual]

Set/get the data VOI. You can limit the reader to only read a subset of the data.

virtual void vtkImageReader::GetDataVOI ( int &  ,
int &  ,
int &  ,
int &  ,
int &  ,
int &   
) [virtual]

Set/get the data VOI. You can limit the reader to only read a subset of the data.

virtual void vtkImageReader::GetDataVOI ( int  [6]  )  [virtual]

Set/get the data VOI. You can limit the reader to only read a subset of the data.

virtual unsigned short vtkImageReader::GetDataMask (  )  [virtual]

Set/Get the Data mask.

void vtkImageReader::SetDataMask ( int  val  )  [inline]

Set/Get the Data mask.

Definition at line 59 of file vtkImageReader.h.

virtual void vtkImageReader::SetTransform ( vtkTransform  )  [virtual]

Set/Get transformation matrix to transform the data from slice space into world space. This matrix must be a permutation matrix. To qualify, the sums of the rows must be + or - 1.

virtual vtkTransform* vtkImageReader::GetTransform (  )  [virtual]

Set/Get transformation matrix to transform the data from slice space into world space. This matrix must be a permutation matrix. To qualify, the sums of the rows must be + or - 1.

void vtkImageReader::ComputeInverseTransformedExtent ( int  inExtent[6],
int  outExtent[6] 
)

void vtkImageReader::ComputeInverseTransformedIncrements ( vtkIdType  inIncr[3],
vtkIdType  outIncr[3] 
)

int vtkImageReader::OpenAndSeekFile ( int  extent[6],
int  slice 
)

virtual void vtkImageReader::SetScalarArrayName ( const char *   )  [virtual]

Set/get the scalar array name for this data set.

virtual char* vtkImageReader::GetScalarArrayName (  )  [virtual]

Set/get the scalar array name for this data set.

void vtkImageReader::ComputeTransformedSpacing ( double  Spacing[3]  )  [protected]

void vtkImageReader::ComputeTransformedOrigin ( double  origin[3]  )  [protected]

void vtkImageReader::ComputeTransformedExtent ( int  inExtent[6],
int  outExtent[6] 
) [protected]

void vtkImageReader::ComputeTransformedIncrements ( vtkIdType  inIncr[3],
vtkIdType  outIncr[3] 
) [protected]

virtual int vtkImageReader::RequestInformation ( vtkInformation request,
vtkInformationVector **  inputVector,
vtkInformationVector outputVector 
) [protected, virtual]

Reimplemented from vtkImageReader2.

void vtkImageReader::ExecuteData ( vtkDataObject output  )  [protected, virtual]

This method is the old style execute method

Reimplemented from vtkImageReader2.

Reimplemented in vtkBMPReader.


Member Data Documentation

unsigned short vtkImageReader::DataMask [protected]

Definition at line 97 of file vtkImageReader.h.

Definition at line 99 of file vtkImageReader.h.

int vtkImageReader::DataVOI[6] [protected]

Definition at line 108 of file vtkImageReader.h.

Definition at line 110 of file vtkImageReader.h.


The documentation for this class was generated from the following file:

Generated on Sat Dec 27 13:30:56 2008 for VTK by  doxygen 1.5.6