54   TPTImage( 
const std::string& path ): 
IIPImage( path ), tiff( NULL ), tile_buf( NULL ) {};
    69       tile_buf = image.tile_buf;
    78     tiff = NULL; tile_buf = NULL; 
   103   RawTile getTile( 
int x, 
int y, 
unsigned int r, 
int l, 
unsigned int t );
 Image class for Tiled Pyramidal Images: Inherits from IIPImage. Uses libtiff. 
Definition: TPTImage.h:35
RawTile getTile(int x, int y, unsigned int r, int l, unsigned int t)
Overloaded function for getting a particular tile. 
TPTImage(const TPTImage &image)
Copy Constructor. 
Definition: TPTImage.h:59
void loadImageInfo(int x, int y)
Overloaded function for loading TIFF image information. 
TPTImage()
Constructor. 
Definition: TPTImage.h:49
TPTImage(const IIPImage &image)
Construct from an IIPImage object. 
Definition: TPTImage.h:77
~TPTImage()
Destructor. 
Definition: TPTImage.h:82
Main class to handle the pyramidal image source. 
Definition: IIPImage.h:62
void closeImage()
Overloaded function for closing a TIFF image. 
TPTImage & operator=(TPTImage image)
Assignment Operator. 
Definition: TPTImage.h:64
IIPImage & operator=(IIPImage image)
Assignment operator. 
Definition: IIPImage.h:375
void openImage()
Overloaded function for opening a TIFF image. 
TPTImage(const std::string &path)
Constructor. 
Definition: TPTImage.h:54
Class to represent a single image tile. 
Definition: RawTile.h:45