HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
|
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< classColor > | LabelFile::getClassInfo () |
Get vector of class name and color associations. More... | |
std::vector< colorClass > | LabelFile::getColorInfo () |
Get vector of colorClass objects made from name and color associations. More... | |
This library allows C++ interactivity with ENVI-BIL hyperspectral images
std::vector< classColor > LabelFile::getClassInfo | ( | ) |
Get vector of class name and color associations.
Definition at line 178 of file labelfile.cpp.
cv::Vec3b LabeledObject::getColor | ( | ) |
Gets 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.
Definition at line 183 of file labelfile.cpp.
classColor LabeledObject::getInfo | ( | ) |
Gets class and name association info.
Definition at line 227 of file labelfile.cpp.
cv::Mat LabelFile::getLabelImage | ( | ) |
Get image showing class colors and contours for whole label file.
Definition at line 165 of file labelfile.cpp.
std::string LabeledObject::getName | ( | ) |
Gets 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.
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.
Definition at line 170 of file labelfile.cpp.
void LabeledObject::setColor | ( | cv::Vec3b | new_color | ) |
Sets color of object for label image.
new_color | Color to set as LabeledObject color |
Definition at line 202 of file labelfile.cpp.
void LabeledObject::setName | ( | std::string | new_name | ) |
Sets name of object.
new_name | Name 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.
new_polygon | Polygon to set new object bounds |
Definition at line 212 of file labelfile.cpp.