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