Isis 3 Programmer Reference
|
BLOB extraction class. More...
#include <HiBlob.h>
Public Member Functions | |
HiBlob () | |
Default, mostly useless constructor. More... | |
HiBlob (Cube &cube, const QString &tblname, const QString &field, const QString &name="HiBlob") | |
Constructor providing interface to an ISIS Cube object. More... | |
virtual | ~HiBlob () |
Destructor. More... | |
const HiMatrix & | buffer () const |
Return a reference to the data. More... | |
Blobber | deepcopy () const |
Create a unique copy of this blob. More... | |
void | setName (const QString &name) |
Specifies the name of this class instantiation. More... | |
void | setBlobName (const QString &bname) |
Sets the name of the ISIS BLOB object that contains the data. More... | |
void | setFieldName (const QString &fname) |
Sets field name in the ISIS BLOB object that contains data. More... | |
int | size () const |
Returns the total number of elements (rows * columns) in blob. More... | |
int | Lines () const |
Number of rows or lines in the BLOB. More... | |
int | Samples () const |
Number of columns or samples in the BLOB. More... | |
QString | getName () const |
Returns the name of the BLOB given to refer to this instantiation. More... | |
QString | getBlobName () const |
Retrieves the name of the Table object. More... | |
QString | getFieldName () const |
Retreive the name of the field in the Tabel object BLOB. More... | |
double * | operator[] (int i) |
Returns the ith row/line in the BLOB that can be further referenced into samples. More... | |
double const * | operator[] (int i) const |
Returns the ith row/line in the BLOB that can be further referenced into samples. More... | |
void | load (const QString &filename) |
Loads the contents of a BLOB from a cube file. More... | |
void | load (Cube &cube) |
Loads the contents of a BLOB from a Cube object. More... | |
Protected Types | |
typedef TNT::Array2D< double > | BlobBuf |
Internal buffer uses TNT. More... | |
Protected Member Functions | |
const BlobBuf & | ref () const |
Returns a const reference to the internal buffer for ease of use to derived objects. More... | |
BLOB extraction class.
This class provides access and processing of HiRISE data as stored in an ISIS BLOB (Table).
Note that the file provided must be a HiRISE ISIS cube file that is freshly converted from a PDS compatable EDR (hi2isis). It must contain an ISIS Table named "HiRISE Calibration Image". From that table, data is extracted from the "Calibration" field.
|
protectedinherited |
|
inline |
|
inline |
|
inline |
Return a reference to the data.
Definition at line 71 of file HiBlob.h.
References Isis::Blobber::ref().
|
inherited |
Create a unique copy of this blob.
This method creates a fully new copy of this object. The default copy constructors/methods create a reference to the data read from the Table object. For example, the following code fragment will result in two Blobbers that refer to the same memory location that stores the BLOB data:
To ensure you have two unique storage areas of the BLOB data so they can change independantly, use:
Definition at line 123 of file Blobber.cpp.
References Isis::Blobber::_buf.
|
inlineinherited |
Retrieves the name of the Table object.
Definition at line 199 of file Blobber.h.
References Isis::Blobber::_blobname.
Referenced by Isis::Blobber::load().
|
inlineinherited |
Retreive the name of the field in the Tabel object BLOB.
Definition at line 207 of file Blobber.h.
References Isis::Blobber::_fieldname.
Referenced by Isis::Blobber::load(), Isis::Blobber::loadDouble(), and Isis::Blobber::loadInteger().
|
inlineinherited |
Returns the name of the BLOB given to refer to this instantiation.
Definition at line 191 of file Blobber.h.
References Isis::Blobber::_name.
|
inlineinherited |
Number of rows or lines in the BLOB.
Definition at line 176 of file Blobber.h.
References Isis::Blobber::_buf.
Referenced by Isis::Blobber::size().
|
inherited |
Loads the contents of a BLOB from a cube file.
Provides the I/O interface for ISIS cube files.
[in] | filename | (string&) Name of ISIS cube file to read |
Definition at line 136 of file Blobber.cpp.
References Isis::Cube::open().
Referenced by Isis::Blobber::Blobber().
|
inherited |
Loads the contents of a BLOB from a Cube object.
Provides the I/O interface for the Cube object. One thing to note here is that it creates a CubeInfo object from the Cube object and then calls the CubeInfo load method. Hence, this method is required as an intermediary method that cascades to the actual method that does the real work.
[in] | cube | (Cube&) Reference to an ISIS cube file that has been opened or created in the Cube object. |
Definition at line 156 of file Blobber.cpp.
References _FILEINFO_, Isis::Blobber::getBlobName(), Isis::Blobber::getFieldName(), Isis::TableField::isDouble(), Isis::TableField::isInteger(), Isis::Blobber::loadDouble(), Isis::Blobber::loadInteger(), Isis::IException::Programmer, and Isis::Cube::read().
|
inlineinherited |
Returns the ith row/line in the BLOB that can be further referenced into samples.
To access the 2nd sample in the 10th line use:
i | Index |
Definition at line 222 of file Blobber.h.
References Isis::Blobber::_buf.
|
inlineinherited |
Returns the ith row/line in the BLOB that can be further referenced into samples.
This method provides const access to the data in row matrix form. To access the 2nd sample in the 10th line use:
i | Index |
Definition at line 237 of file Blobber.h.
References Isis::Blobber::_buf.
|
inlineprotectedinherited |
Returns a const reference to the internal buffer for ease of use to derived objects.
Definition at line 254 of file Blobber.h.
References Isis::Blobber::_buf.
Referenced by buffer().
|
inlineinherited |
Number of columns or samples in the BLOB.
Definition at line 183 of file Blobber.h.
References Isis::Blobber::_buf.
Referenced by Isis::Blobber::size().
|
inlineinherited |
Sets the name of the ISIS BLOB object that contains the data.
This is name of a ISIS Table object that contains one or more fields that make up the BLOB. This is the value of the [i]Name[/i] keyword in the Table object.
bname | Blobber name |
Definition at line 148 of file Blobber.h.
References Isis::Blobber::_blobname.
|
inlineinherited |
Sets field name in the ISIS BLOB object that contains data.
This method sets the name of the field contained within the Table object BLOB from which the data is extracted.
fname | Field name |
Definition at line 160 of file Blobber.h.
References Isis::Blobber::_fieldname.
|
inlineinherited |
Specifies the name of this class instantiation.
This is just an additional name that can be used to identify instantiations of this class. It provides a way to uniquely identify each object.
name | Unique name |
Definition at line 135 of file Blobber.h.
References Isis::Blobber::_name.
|
inlineinherited |
Returns the total number of elements (rows * columns) in blob.
Definition at line 168 of file Blobber.h.
References Isis::Blobber::Lines(), and Isis::Blobber::Samples().