VTK
|
read TIFF files More...
#include <vtkTIFFReader.h>
Public Types | |
typedef vtkImageReader2 | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkTIFFReader * | NewInstance () const |
virtual void | PrintSelf (ostream &os, vtkIndent indent) |
virtual int | CanReadFile (const char *fname) |
virtual const char * | GetFileExtensions () |
virtual const char * | GetDescriptiveName () |
void | SetOrientationType (unsigned int orientationType) |
virtual unsigned int | GetOrientationType () |
virtual bool | GetOrientationTypeSpecifiedFlag () |
virtual void | SetOriginSpecifiedFlag (bool) |
virtual bool | GetOriginSpecifiedFlag () |
virtual void | OriginSpecifiedFlagOn () |
virtual void | OriginSpecifiedFlagOff () |
virtual void | SetSpacingSpecifiedFlag (bool) |
virtual bool | GetSpacingSpecifiedFlag () |
virtual void | SpacingSpecifiedFlagOn () |
virtual void | SpacingSpecifiedFlagOff () |
Static Public Member Functions | |
static vtkTIFFReader * | New () |
static int | IsTypeOf (const char *type) |
static vtkTIFFReader * | SafeDownCast (vtkObjectBase *o) |
Protected Types | |
enum | { NOFORMAT, RGB, GRAYSCALE, PALETTE_RGB, PALETTE_GRAYSCALE, OTHER } |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkTIFFReader () | |
~vtkTIFFReader () | |
virtual void | ExecuteInformation () |
virtual void | ExecuteDataWithInformation (vtkDataObject *out, vtkInformation *outInfo) |
read TIFF files
vtkTIFFReader is a source object that reads TIFF files. It should be able to read almost any TIFF file
Definition at line 36 of file vtkTIFFReader.h.
Reimplemented from vtkImageReader2.
Definition at line 40 of file vtkTIFFReader.h.
anonymous enum [protected] |
Definition at line 102 of file vtkTIFFReader.h.
vtkTIFFReader::vtkTIFFReader | ( | ) | [protected] |
vtkTIFFReader::~vtkTIFFReader | ( | ) | [protected] |
static vtkTIFFReader* vtkTIFFReader::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkImageReader2.
static int vtkTIFFReader::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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkImageReader2.
virtual int vtkTIFFReader::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 vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkImageReader2.
static vtkTIFFReader* vtkTIFFReader::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkImageReader2.
virtual vtkObjectBase* vtkTIFFReader::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkImageReader2.
vtkTIFFReader* vtkTIFFReader::NewInstance | ( | ) | const |
Reimplemented from vtkImageReader2.
virtual void vtkTIFFReader::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.
virtual int vtkTIFFReader::CanReadFile | ( | const char * | fname | ) | [virtual] |
Is the given file name a tiff file?
virtual const char* vtkTIFFReader::GetFileExtensions | ( | ) | [inline, virtual] |
Get the file extensions for this format. Returns a string with a space separated list of extensions in the format .extension
Reimplemented from vtkImageReader2.
Definition at line 49 of file vtkTIFFReader.h.
virtual const char* vtkTIFFReader::GetDescriptiveName | ( | ) | [inline, virtual] |
Return a descriptive name for the file format that might be useful in a GUI.
Reimplemented from vtkImageReader2.
Definition at line 58 of file vtkTIFFReader.h.
void vtkTIFFReader::SetOrientationType | ( | unsigned int | orientationType | ) |
Set orientation type ORIENTATION_TOPLEFT 1 (row 0 top, col 0 lhs) ORIENTATION_TOPRIGHT 2 (row 0 top, col 0 rhs) ORIENTATION_BOTRIGHT 3 (row 0 bottom, col 0 rhs) ORIENTATION_BOTLEFT 4 (row 0 bottom, col 0 lhs) ORIENTATION_LEFTTOP 5 (row 0 lhs, col 0 top) ORIENTATION_RIGHTTOP 6 (row 0 rhs, col 0 top) ORIENTATION_RIGHTBOT 7 (row 0 rhs, col 0 bottom) ORIENTATION_LEFTBOT 8 (row 0 lhs, col 0 bottom) User need to explicitly include vtk_tiff.h header to have access to those
virtual unsigned int vtkTIFFReader::GetOrientationType | ( | ) | [virtual] |
Set orientation type ORIENTATION_TOPLEFT 1 (row 0 top, col 0 lhs) ORIENTATION_TOPRIGHT 2 (row 0 top, col 0 rhs) ORIENTATION_BOTRIGHT 3 (row 0 bottom, col 0 rhs) ORIENTATION_BOTLEFT 4 (row 0 bottom, col 0 lhs) ORIENTATION_LEFTTOP 5 (row 0 lhs, col 0 top) ORIENTATION_RIGHTTOP 6 (row 0 rhs, col 0 top) ORIENTATION_RIGHTBOT 7 (row 0 rhs, col 0 bottom) ORIENTATION_LEFTBOT 8 (row 0 lhs, col 0 bottom) User need to explicitly include vtk_tiff.h header to have access to those
virtual bool vtkTIFFReader::GetOrientationTypeSpecifiedFlag | ( | ) | [virtual] |
Get method to check if orientation type is specified.
virtual void vtkTIFFReader::SetOriginSpecifiedFlag | ( | bool | ) | [virtual] |
Set/get methods to see if manual origin has been set.
virtual bool vtkTIFFReader::GetOriginSpecifiedFlag | ( | ) | [virtual] |
Set/get methods to see if manual origin has been set.
virtual void vtkTIFFReader::OriginSpecifiedFlagOn | ( | ) | [virtual] |
Set/get methods to see if manual origin has been set.
virtual void vtkTIFFReader::OriginSpecifiedFlagOff | ( | ) | [virtual] |
Set/get methods to see if manual origin has been set.
virtual void vtkTIFFReader::SetSpacingSpecifiedFlag | ( | bool | ) | [virtual] |
Set/get if the spacing flag has been specified.
virtual bool vtkTIFFReader::GetSpacingSpecifiedFlag | ( | ) | [virtual] |
Set/get if the spacing flag has been specified.
virtual void vtkTIFFReader::SpacingSpecifiedFlagOn | ( | ) | [virtual] |
Set/get if the spacing flag has been specified.
virtual void vtkTIFFReader::SpacingSpecifiedFlagOff | ( | ) | [virtual] |
Set/get if the spacing flag has been specified.
virtual void vtkTIFFReader::ExecuteInformation | ( | ) | [protected, virtual] |
Reimplemented from vtkImageReader2.
virtual void vtkTIFFReader::ExecuteDataWithInformation | ( | vtkDataObject * | output, |
vtkInformation * | outInfo | ||
) | [protected, virtual] |
This is a convenience method that is implemented in many subclasses instead of RequestData. It is called by RequestData.
Reimplemented from vtkImageReader2.