Isis 3 Programmer Reference
|
Exports cubes into TIFF images. More...
#include <TiffExporter.h>
Public Member Functions | |
TiffExporter () | |
Construct the TIFF exporter. More... | |
virtual | ~TiffExporter () |
Destruct the exporter. More... | |
virtual void | write (FileName outputName, int quality=100, QString compression="none") |
Open the output file for writing, initialize its fields, then let the base ImageExporter handle the generic black-box writing routine. More... | |
virtual void | setGrayscale (ExportDescription &desc) |
Generic initialization with the export description. More... | |
virtual void | setRgb (ExportDescription &desc) |
Generic initialization with the export description. More... | |
virtual void | setRgba (ExportDescription &desc) |
Generic initialization with the export description. More... | |
void | operator() (vector< Buffer *> &in) const |
The method for writing a line of input image data (with potentially several bands representing color channels) to the output image. More... | |
int | samples () const |
Number of samples (columns) in the output image. More... | |
int | lines () const |
Number of lines (rows) in the output image. More... | |
int | bands () const |
Number of bands (channels) in the output image. More... | |
double | inputMinimum (int channel) const |
Returns the input minimum for the given channel. More... | |
double | inputMaximum (int channel) const |
Returns the input maximum for the given channel. More... | |
void | setOutputPixelRange (double outputPixelMinimum, double outputPixelMaximum) |
Set the DN floor and ceiling for the exported image. More... | |
Static Public Member Functions | |
static bool | canWriteFormat (QString format) |
Returns true if the format is "tiff". More... | |
static ImageExporter * | fromFormat (QString format) |
A static (factory) method for constructing an ImageExporter instance from an output format. More... | |
Protected Types | |
typedef void(ImageExporter::* | WriteChannels) (vector< Buffer *> &in) const |
Friendly alias for a method used to write a particular color channel. More... | |
Protected Member Functions | |
virtual void | createBuffer () |
Creates the buffer to store a chunk of streamed line data with one or more bands. More... | |
virtual void | setBuffer (int s, int b, int dn) const |
Set the DN value at the given sample and band, resolved to a single index, of the line buffer. More... | |
virtual void | writeLine (int l) const |
Writes a line of buffered data to the output image on disk. More... | |
virtual void | initialize (ExportDescription &desc) |
Generic initialization with the export description. More... | |
virtual void | writeGrayscale (vector< Buffer *> &in) const |
Write a line of grayscale data to the output image. More... | |
virtual void | writeRgb (vector< Buffer *> &in) const |
Write a line of RGB data to the output image. More... | |
virtual void | writeRgba (vector< Buffer *> &in) const |
Write a line of RGBA data to the output image. More... | |
void | setExtension (QString extension) |
Sets the extension for the output image and generates the extension for the world file from it. More... | |
void | setExportDescription (ExportDescription &desc) |
Sets the description for the output image. More... | |
Cube * | initializeProcess () |
Sets up the export process with the parameters described within the given description. More... | |
QString | extension () const |
Gets the extension for the output image. More... | |
ExportDescription & | exportDescription () const |
Gets the description for the output image. More... | |
ProcessExport & | process () const |
Get a reference to the process object, useful for subclasses to access and manipulate the process. More... | |
PixelType | pixelType () const |
Returns the pixel type. More... | |
virtual int | outputPixelValue (double dn) const |
Return the output clamped integer pixel value from the input double-precision DN. More... | |
Private Attributes | |
TIFF * | m_image |
Object responsible for writing data to the output image. More... | |
unsigned char * | m_raster |
Array containing all color channels for a line. More... | |
Exports cubes into TIFF images.
A streamed exporter for TIFF images. Can write an arbitrarily large set of single-band Isis cubes to an arbitrarily large TIFF image with the given pixel type.
2012-04-04 Travis Addair - Added documentation.
2012-08-28 Steven Lambright - Fixed some problems with memory allocations/deallocations and a flag on the tiff files was not being set, but it was necessary to successfully write out tiff files (TIFFTAG_ROWSPERSTRIP), References #579.
2013-06-05 Jeannie Backer - Removed "get" prefix from ImageExporter method calls. References #1380.
2015-02-10 Jeffrey Covington - Changed default compression to no compression. Added compression parameter to write() method. Fixes #1745.
Definition at line 57 of file TiffExporter.h.
|
protectedinherited |
Friendly alias for a method used to write a particular color channel.
Definition at line 114 of file ImageExporter.h.
Isis::TiffExporter::TiffExporter | ( | ) |
Construct the TIFF exporter.
Definition at line 17 of file TiffExporter.cpp.
References m_image, m_raster, and Isis::ImageExporter::setExtension().
|
virtual |
Destruct the exporter.
Definition at line 28 of file TiffExporter.cpp.
|
inherited |
Number of bands (channels) in the output image.
Definition at line 132 of file ImageExporter.cpp.
Referenced by Isis::QtExporter::checkDataSize(), Isis::JP2Exporter::createBuffer(), createBuffer(), setBuffer(), Isis::JP2Exporter::write(), and write().
|
static |
Returns true if the format is "tiff".
format | Lowercase format abbreviation |
Definition at line 163 of file TiffExporter.cpp.
Referenced by Isis::ImageExporter::fromFormat().
|
protectedvirtual |
Creates the buffer to store a chunk of streamed line data with one or more bands.
Implements Isis::StreamExporter.
Definition at line 43 of file TiffExporter.cpp.
References _FILEINFO_, Isis::ImageExporter::bands(), m_raster, Isis::ImageExporter::pixelType(), Isis::ImageExporter::samples(), and Isis::IException::Unknown.
|
protectedinherited |
Gets the description for the output image.
Definition at line 220 of file ImageExporter.cpp.
|
protectedinherited |
Gets the extension for the output image.
Definition at line 202 of file ImageExporter.cpp.
Referenced by Isis::JP2Exporter::write(), write(), and Isis::QtExporter::write().
|
staticinherited |
A static (factory) method for constructing an ImageExporter instance from an output format.
The specific subclass of the returned instance is determined from the desired output image format provided. Each subclass has knowledge of whether or not it can write a particular format. Because the ability to export an image format is not mutually exclusive amongst exporters, the order of condieration here matters. For example, using a TIFF exporter takes precedence over a Qt exporter for TIFF images, because the former can process cubes greater than 2GB while the latter cannot. It is the caller's responsibility to delete the exporter instance when they are finished with it.
format | The format for the output image to be created |
Definition at line 384 of file ImageExporter.cpp.
References _FILEINFO_, Isis::JP2Exporter::canWriteFormat(), canWriteFormat(), Isis::QtExporter::canWriteFormat(), and Isis::IException::Programmer.
|
protectedvirtualinherited |
Generic initialization with the export description.
Set the input, set the pixel type, and create the buffer.
desc | Export description containing necessary channel information |
Implements Isis::ImageExporter.
Definition at line 68 of file StreamExporter.cpp.
References Isis::StreamExporter::createBuffer(), and Isis::ImageExporter::initialize().
Referenced by Isis::StreamExporter::setGrayscale(), Isis::StreamExporter::setRgb(), and Isis::StreamExporter::setRgba().
|
protectedinherited |
Sets up the export process with the parameters described within the given description.
This method determines determines whether to write the data as grayscale, RGB, or RGBA. It then opens a cube for retrieving the input data and establishing the dimensions of the output image. Next, the ProcessExport format is set to BIL and the ProcessExport output pixel type, output valid data range, and output null are set based on the given export description. Last, the absolute output pixel range is set based on the given description (this is the smallest and largest allowed pixel values in the output, including "special" pixel values).
Definition at line 240 of file ImageExporter.cpp.
References _FILEINFO_, Isis::ProcessExport::BIL, Isis::Cube::lineCount(), Isis::IException::Programmer, Isis::Cube::sampleCount(), Isis::ProcessExport::setFormat(), Isis::ProcessExport::SetOutputNull(), Isis::ProcessExport::SetOutputRange(), Isis::ProcessExport::SetOutputType(), Isis::ImageExporter::writeGrayscale(), Isis::ImageExporter::writeRgb(), and Isis::ImageExporter::writeRgba().
|
inherited |
Returns the input maximum for the given channel.
Any value of max in the input cube will be mapped to the output max of the output channel.
channel | Index of the channel within the process |
Definition at line 158 of file ImageExporter.cpp.
|
inherited |
Returns the input minimum for the given channel.
Any value of min in the input cube will be mapped to the output min of the output channel.
channel | Index of the channel within the process |
Definition at line 145 of file ImageExporter.cpp.
|
inherited |
Number of lines (rows) in the output image.
Definition at line 122 of file ImageExporter.cpp.
Referenced by Isis::QtExporter::checkDataSize(), Isis::QtExporter::setGrayscale(), Isis::QtExporter::setRgb(), Isis::QtExporter::setRgba(), Isis::JP2Exporter::write(), and write().
|
inherited |
The method for writing a line of input image data (with potentially several bands representing color channels) to the output image.
It is called for each line of data in the input images (provides a vector containing the same line from each single-band input image). Enables the exporter to be used as a functor in a custom ProcessExport routine, bypassing the black-box write() method entirely.
in | Vector containing a line of input data from each input channel |
Definition at line 78 of file ImageExporter.cpp.
|
protectedvirtualinherited |
Return the output clamped integer pixel value from the input double-precision DN.
dn | The input DN |
Definition at line 319 of file ImageExporter.cpp.
Referenced by Isis::StreamExporter::writeGrayscale(), Isis::QtExporter::writeGrayscale(), Isis::StreamExporter::writeRgb(), Isis::QtExporter::writeRgb(), Isis::StreamExporter::writeRgba(), and Isis::QtExporter::writeRgba().
|
protectedinherited |
Returns the pixel type.
Defaults to None if not set by the user.
Definition at line 301 of file ImageExporter.cpp.
Referenced by Isis::JP2Exporter::createBuffer(), createBuffer(), Isis::JP2Exporter::setBuffer(), setBuffer(), Isis::JP2Exporter::write(), write(), and Isis::JP2Exporter::writeLine().
|
protectedinherited |
Get a reference to the process object, useful for subclasses to access and manipulate the process.
Definition at line 291 of file ImageExporter.cpp.
|
inherited |
Number of samples (columns) in the output image.
Definition at line 112 of file ImageExporter.cpp.
Referenced by Isis::QtExporter::checkDataSize(), Isis::JP2Exporter::createBuffer(), createBuffer(), Isis::QtExporter::setGrayscale(), Isis::QtExporter::setRgb(), Isis::QtExporter::setRgba(), Isis::JP2Exporter::write(), and write().
|
protectedvirtual |
Set the DN value at the given sample and band, resolved to a single index, of the line buffer.
s | The sample component of the index into the buffer |
b | The band component of the index into the buffer |
dn | The value to set at the given index |
Implements Isis::StreamExporter.
Definition at line 121 of file TiffExporter.cpp.
References _FILEINFO_, Isis::ImageExporter::bands(), m_raster, Isis::ImageExporter::pixelType(), Isis::IException::Programmer, and Isis::toString().
|
protectedinherited |
Sets the description for the output image.
desc | The export description |
Definition at line 211 of file ImageExporter.cpp.
|
protectedinherited |
Sets the extension for the output image and generates the extension for the world file from it.
extension | The extension for the output image |
Definition at line 187 of file ImageExporter.cpp.
Referenced by Isis::JP2Exporter::JP2Exporter(), Isis::QtExporter::QtExporter(), and TiffExporter().
|
virtualinherited |
Generic initialization with the export description.
Stream exporters do not do anything special to export a grayscale image beyond setting up the appropriate number of color channels.
desc | Export description containing necessary channel information |
Implements Isis::ImageExporter.
Definition at line 33 of file StreamExporter.cpp.
References Isis::StreamExporter::initialize().
|
inherited |
Set the DN floor and ceiling for the exported image.
All DNs less than the min will be set to the min in the exported image. Similarly, all DNs greater than the max will be set to the max in the exported image.
Note: These values may be "special". For example, if Null pixels are exported to 0.0 and the minimum valid pixels are exported to 2.0, then 0.0 should be passed in for the value of the min parameter.
min | The absolute minimum output DN value. |
max | The absolute maximum output DN value. |
Definition at line 175 of file ImageExporter.cpp.
|
virtualinherited |
Generic initialization with the export description.
Stream exporters do not do anything special to export an RGB image beyond setting up the appropriate number of color channels.
desc | Export description containing necessary channel information |
Implements Isis::ImageExporter.
Definition at line 45 of file StreamExporter.cpp.
References Isis::StreamExporter::initialize().
|
virtualinherited |
Generic initialization with the export description.
Stream exporters do not do anything special to export an RGBA image beyond setting up the appropriate number of color channels.
desc | Export description containing necessary channel information |
Implements Isis::ImageExporter.
Definition at line 57 of file StreamExporter.cpp.
References Isis::StreamExporter::initialize().
|
virtual |
Open the output file for writing, initialize its fields, then let the base ImageExporter handle the generic black-box writing routine.
outputName | The filename of the output cube |
quality | The quality of the output, not used for TIFF |
compression | The compression algorithm used. Currenly supports "packbits", "lzw", "deflate", and "none". |
Reimplemented from Isis::ImageExporter.
Definition at line 67 of file TiffExporter.cpp.
References _FILEINFO_, Isis::FileName::addExtension(), Isis::ImageExporter::bands(), Isis::FileName::expanded(), Isis::ImageExporter::extension(), Isis::ImageExporter::lines(), m_image, Isis::ImageExporter::pixelType(), Isis::IException::Programmer, Isis::ImageExporter::samples(), and Isis::ImageExporter::write().
|
protectedvirtualinherited |
Write a line of grayscale data to the output image.
in | Vector containing a single grayscale input line |
Implements Isis::ImageExporter.
Definition at line 79 of file StreamExporter.cpp.
References Isis::Buffer::Line(), Isis::ImageExporter::outputPixelValue(), Isis::Buffer::SampleDimension(), Isis::StreamExporter::setBuffer(), and Isis::StreamExporter::writeLine().
|
protectedvirtual |
Writes a line of buffered data to the output image on disk.
l | The line of the output image |
Implements Isis::StreamExporter.
Definition at line 148 of file TiffExporter.cpp.
References _FILEINFO_, m_image, m_raster, and Isis::IException::Programmer.
|
protectedvirtualinherited |
Write a line of RGB data to the output image.
in | Vector containing three input lines (red, green, blue) |
Implements Isis::ImageExporter.
Definition at line 97 of file StreamExporter.cpp.
References Isis::Buffer::Line(), Isis::ImageExporter::outputPixelValue(), Isis::Buffer::SampleDimension(), Isis::StreamExporter::setBuffer(), and Isis::StreamExporter::writeLine().
|
protectedvirtualinherited |
Write a line of RGBA data to the output image.
in | Vector containing four input lines (red, green, blue, alpha) |
Implements Isis::ImageExporter.
Definition at line 121 of file StreamExporter.cpp.
References Isis::Buffer::Line(), Isis::ImageExporter::outputPixelValue(), Isis::Buffer::SampleDimension(), Isis::StreamExporter::setBuffer(), and Isis::StreamExporter::writeLine().
|
private |
Object responsible for writing data to the output image.
Definition at line 75 of file TiffExporter.h.
Referenced by TiffExporter(), write(), writeLine(), and ~TiffExporter().
|
private |
Array containing all color channels for a line.
Definition at line 78 of file TiffExporter.h.
Referenced by createBuffer(), setBuffer(), TiffExporter(), writeLine(), and ~TiffExporter().