HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
Classes | Typedefs | Functions
C++ Interface

Classes

class  ClassifiedHSImage
 The ClassifiedHSImage class is the interface for interacting with classified hyperspectral images. More...
 
class  HSImage
 The HSImage class is the base class for interacting with ENVI type hyperspectral images. More...
 
class  LabeledObject
 The LabeledObject class represents one labeled object in an image with all the necessary information to identify it. More...
 
class  LabelFile
 The LabelFile class allows an interface to read and process CSAIL/LabelMe style label (.lif) files. More...
 

Typedefs

typedef std::pair< std::string,
cv::Vec3b > 
classColor
 The classColor typedef creates a simple interface for pairing a class name with a specific OpenCV color.
 
typedef std::pair< std::string,
cv::Vec3b > 
classColor
 The classColor typedef creates a simple interface for pairing a class name with a specific OpenCV color.
 
typedef std::pair< cv::Vec3b,
std::string > 
colorClass
 The colorClass typedef creates a simple interface that is reversed from classColor, for ease of use in creating Python dict() types relating a color to a class.
 
typedef
boost::archive::iterators::transform_width
< boost::archive::iterators::binary_from_base64
< boost::archive::iterators::remove_whitespace
< std::string::const_iterator > >,8, 6 > 
it_binary_t
 
typedef
boost::archive::iterators::insert_linebreaks
< boost::archive::iterators::base64_from_binary
< boost::archive::iterators::transform_width
< std::string::const_iterator, 6, 8 > >, 72 > 
it_base64_t
 

Functions

 LabeledObject::LabeledObject ()
 Default Constructor for LabeledObject.
 
void LabeledObject::setPolygon (std::vector< cv::Point > new_polygon)
 Sets the object defining polygon to a new set of points. More...
 
void LabeledObject::setName (std::string new_name)
 Sets name of object. More...
 
void LabeledObject::setColor (cv::Vec3b new_color)
 Sets color of object for label image. More...
 
classColor LabeledObject::getInfo ()
 Gets class and name association info. More...
 
std::string LabeledObject::getName ()
 Gets name of LabeledObject. More...
 
cv::Vec3b LabeledObject::getColor ()
 Gets color of LabeledObject. More...
 
std::vector< cv::Point > LabeledObject::getPolygon ()
 Gets shape polygon of LabeledObject.
 
 LabelFile::LabelFile ()
 Default constructor for LabelFile.
 
 LabelFile::LabelFile (std::string filename)
 Constructor to build from file on disk.
 
void LabelFile::loadFile (std::string filename)
 Load file on disk into LabelFile instance.
 
cv::Mat LabelFile::getRGBImage ()
 Get RGB image of original scene the labels were generated from. More...
 
cv::Mat LabelFile::getLabelImage ()
 Get image showing class colors and contours for whole label file. More...
 
cv::Mat LabelFile::getViewingImage ()
 Get image showing RGB scene with class information overlaid in semi-transparent color. Designed for human viewing, not computer analysis. More...
 
std::vector< classColorLabelFile::getClassInfo ()
 Get vector of class name and color associations. More...
 
std::vector< colorClassLabelFile::getColorInfo ()
 Get vector of colorClass objects made from name and color associations. More...
 

Detailed Description

This library allows C++ interactivity with ENVI-BIL hyperspectral images

Function Documentation

std::vector< classColor > LabelFile::getClassInfo ( )

Get vector of class name and color associations.

Returns
std::vector<classColor> Vector of class information

Definition at line 178 of file labelfile.cpp.

cv::Vec3b LabeledObject::getColor ( )

Gets color of LabeledObject.

Returns
cv::Vec3b Class color of LabeledObject

Definition at line 217 of file labelfile.cpp.

std::vector< colorClass > LabelFile::getColorInfo ( )

Get vector of colorClass objects made from name and color associations.

Returns
std::vector<colorClass> Vector of colorClass objects

Definition at line 183 of file labelfile.cpp.

classColor LabeledObject::getInfo ( )

Gets class and name association info.

Returns
classColor Vector containing class name and color association information

Definition at line 227 of file labelfile.cpp.

cv::Mat LabelFile::getLabelImage ( )

Get image showing class colors and contours for whole label file.

Returns
cv::Mat Image of class information

Definition at line 165 of file labelfile.cpp.

std::string LabeledObject::getName ( )

Gets name of LabeledObject.

Returns
std::string Name of LabeledObject

Definition at line 222 of file labelfile.cpp.

cv::Mat LabelFile::getRGBImage ( )

Get RGB image of original scene the labels were generated from.

Returns
cv::Mat Image of scene

Definition at line 160 of file labelfile.cpp.

cv::Mat LabelFile::getViewingImage ( )

Get image showing RGB scene with class information overlaid in semi-transparent color. Designed for human viewing, not computer analysis.

Returns
cv::Mat Image showing class overlays on scene

Definition at line 170 of file labelfile.cpp.

void LabeledObject::setColor ( cv::Vec3b  new_color)

Sets color of object for label image.

Parameters
new_colorColor to set as LabeledObject color

Definition at line 202 of file labelfile.cpp.

void LabeledObject::setName ( std::string  new_name)

Sets name of object.

Parameters
new_nameName to set as LabeledObject name

Definition at line 207 of file labelfile.cpp.

void LabeledObject::setPolygon ( std::vector< cv::Point >  new_polygon)

Sets the object defining polygon to a new set of points.

Parameters
new_polygonPolygon to set new object bounds

Definition at line 212 of file labelfile.cpp.