ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
#include <itkTIFFImageIO.h>
Public Types | |
enum | { NOFORMAT, RGB_, GRAYSCALE, PALETTE_RGB, PALETTE_GRAYSCALE, OTHER } |
enum | { NoCompression, PackBits, JPEG, Deflate, LZW } |
typedef SmartPointer< Self > | Pointer |
typedef TIFFImageIO | Self |
typedef ImageIOBase | Superclass |
Public Member Functions | |
virtual bool | CanReadFile (const char *) |
virtual bool | CanWriteFile (const char *) |
virtual ::itk::LightObject::Pointer | CreateAnother (void) const |
virtual const char * | GetNameOfClass () const |
virtual void | Read (void *buffer) |
virtual void | ReadImageInformation () |
virtual void | ReadTiles (void *buffer) |
virtual void | ReadVolume (void *buffer) |
void | SetCompression (int compression) |
void | SetCompressionToDeflate () |
void | SetCompressionToJPEG () |
void | SetCompressionToLZW () |
void | SetCompressionToNoCompression () |
void | SetCompressionToPackBits () |
virtual void | Write (const void *buffer) |
virtual void | WriteImageInformation () |
Static Public Member Functions | |
static Pointer | New () |
Protected Member Functions | |
bool | CanFindTIFFTag (unsigned int t) |
int | EvaluateImageAt (void *out, void *in) |
void | GetColor (int index, unsigned short *red, unsigned short *green, unsigned short *blue) |
unsigned int | GetFormat () |
void | InitializeColors () |
void | InternalWrite (const void *buffer) |
void | PrintSelf (std::ostream &os, Indent indent) const |
void | ReadGenericImage (void *out, unsigned int, unsigned int height) |
void * | ReadRawByteFromTag (unsigned int t, short &value_count) |
void | ReadTwoSamplesPerPixelImage (void *out, unsigned int, unsigned int height) |
TIFFImageIO () | |
~TIFFImageIO () | |
Protected Attributes | |
int | m_Compression |
TIFFReaderInternal * | m_InternalImage |
Private Member Functions | |
void | operator= (const Self &) |
TIFFImageIO (const Self &) | |
Private Attributes | |
unsigned short * | m_ColorBlue |
unsigned short * | m_ColorGreen |
unsigned short * | m_ColorRed |
unsigned int | m_ImageFormat |
int | m_TotalColors |
ImageIO object for reading and writing TIFF images.
Definition at line 42 of file itkTIFFImageIO.h.
typedef SmartPointer< Self > itk::TIFFImageIO::Pointer |
Reimplemented from itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
Definition at line 48 of file itkTIFFImageIO.h.
typedef TIFFImageIO itk::TIFFImageIO::Self |
Standard class typedefs.
Reimplemented from itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
Definition at line 46 of file itkTIFFImageIO.h.
Reimplemented from itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
Definition at line 47 of file itkTIFFImageIO.h.
anonymous enum |
Definition at line 88 of file itkTIFFImageIO.h.
anonymous enum |
Definition at line 91 of file itkTIFFImageIO.h.
itk::TIFFImageIO::TIFFImageIO | ( | ) | [protected] |
itk::TIFFImageIO::~TIFFImageIO | ( | ) | [protected] |
itk::TIFFImageIO::TIFFImageIO | ( | const Self & | ) | [private] |
bool itk::TIFFImageIO::CanFindTIFFTag | ( | unsigned int | t | ) | [protected] |
virtual bool itk::TIFFImageIO::CanReadFile | ( | const char * | ) | [virtual] |
Determine the file type. Returns true if this ImageIO can read the file specified.
Implements itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
virtual bool itk::TIFFImageIO::CanWriteFile | ( | const char * | ) | [virtual] |
Determine the file type. Returns true if this ImageIO can read the file specified.
Implements itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
virtual::itk::LightObject::Pointer itk::TIFFImageIO::CreateAnother | ( | void | ) | const [virtual] |
Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.
Reimplemented from itk::LightProcessObject.
Reimplemented in itk::LSMImageIO.
int itk::TIFFImageIO::EvaluateImageAt | ( | void * | out, |
void * | in | ||
) | [protected] |
void itk::TIFFImageIO::GetColor | ( | int | index, |
unsigned short * | red, | ||
unsigned short * | green, | ||
unsigned short * | blue | ||
) | [protected] |
unsigned int itk::TIFFImageIO::GetFormat | ( | ) | [protected] |
virtual const char* itk::TIFFImageIO::GetNameOfClass | ( | ) | const [virtual] |
Run-time type information (and related methods).
Reimplemented from itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
void itk::TIFFImageIO::InitializeColors | ( | ) | [protected] |
void itk::TIFFImageIO::InternalWrite | ( | const void * | buffer | ) | [protected] |
static Pointer itk::TIFFImageIO::New | ( | ) | [static] |
Method for creation through the object factory.
Reimplemented from itk::LightProcessObject.
Reimplemented in itk::LSMImageIO.
void itk::TIFFImageIO::operator= | ( | const Self & | ) | [private] |
This method causes the filter to generate its output.
Reimplemented from itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
void itk::TIFFImageIO::PrintSelf | ( | std::ostream & | os, |
Indent | indent | ||
) | const [protected, 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 itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
virtual void itk::TIFFImageIO::Read | ( | void * | buffer | ) | [virtual] |
Reads the data from disk into the memory buffer provided.
Implements itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
void itk::TIFFImageIO::ReadGenericImage | ( | void * | out, |
unsigned | int, | ||
unsigned int | height | ||
) | [protected] |
virtual void itk::TIFFImageIO::ReadImageInformation | ( | ) | [virtual] |
Set the spacing and diemention information for the set filename.
Implements itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
void* itk::TIFFImageIO::ReadRawByteFromTag | ( | unsigned int | t, |
short & | value_count | ||
) | [protected] |
virtual void itk::TIFFImageIO::ReadTiles | ( | void * | buffer | ) | [virtual] |
Reads 3D data from tiled tiff.
void itk::TIFFImageIO::ReadTwoSamplesPerPixelImage | ( | void * | out, |
unsigned | int, | ||
unsigned int | height | ||
) | [protected] |
virtual void itk::TIFFImageIO::ReadVolume | ( | void * | buffer | ) | [virtual] |
Reads 3D data from multi-pages tiff.
void itk::TIFFImageIO::SetCompression | ( | int | compression | ) | [inline] |
Definition at line 109 of file itkTIFFImageIO.h.
void itk::TIFFImageIO::SetCompressionToDeflate | ( | ) | [inline] |
Definition at line 106 of file itkTIFFImageIO.h.
void itk::TIFFImageIO::SetCompressionToJPEG | ( | ) | [inline] |
Definition at line 105 of file itkTIFFImageIO.h.
void itk::TIFFImageIO::SetCompressionToLZW | ( | ) | [inline] |
Definition at line 107 of file itkTIFFImageIO.h.
void itk::TIFFImageIO::SetCompressionToNoCompression | ( | ) | [inline] |
Definition at line 103 of file itkTIFFImageIO.h.
void itk::TIFFImageIO::SetCompressionToPackBits | ( | ) | [inline] |
Definition at line 104 of file itkTIFFImageIO.h.
virtual void itk::TIFFImageIO::Write | ( | const void * | buffer | ) | [virtual] |
Writes the data to disk from the memory buffer provided. Make sure that the IORegion has been set properly.
Implements itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
virtual void itk::TIFFImageIO::WriteImageInformation | ( | ) | [virtual] |
Writes the spacing and dimentions of the image. Assumes SetFileName has been called with a valid file name.
Implements itk::ImageIOBase.
Reimplemented in itk::LSMImageIO.
unsigned short* itk::TIFFImageIO::m_ColorBlue [private] |
Definition at line 167 of file itkTIFFImageIO.h.
unsigned short* itk::TIFFImageIO::m_ColorGreen [private] |
Definition at line 166 of file itkTIFFImageIO.h.
unsigned short* itk::TIFFImageIO::m_ColorRed [private] |
Definition at line 165 of file itkTIFFImageIO.h.
int itk::TIFFImageIO::m_Compression [protected] |
Definition at line 160 of file itkTIFFImageIO.h.
unsigned int itk::TIFFImageIO::m_ImageFormat [private] |
Definition at line 169 of file itkTIFFImageIO.h.
TIFFReaderInternal* itk::TIFFImageIO::m_InternalImage [protected] |
Definition at line 158 of file itkTIFFImageIO.h.
int itk::TIFFImageIO::m_TotalColors [private] |
Definition at line 168 of file itkTIFFImageIO.h.