HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
|
The LabelFile class allows an interface to read and process CSAIL/LabelMe style label (.lif) files. More...
#include <labelfile.h>
Public Member Functions | |
LabelFile () | |
Default constructor for LabelFile. | |
LabelFile (std::string filename) | |
Constructor to build from file on disk. | |
void | loadFile (std::string filename) |
Load file on disk into LabelFile instance. | |
cv::Mat | getRGBImage () |
Get RGB image of original scene the labels were generated from. More... | |
cv::Mat | getLabelImage () |
Get image showing class colors and contours for whole label file. More... | |
cv::Mat | 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 > | getClassInfo () |
Get vector of class name and color associations. More... | |
std::vector< colorClass > | getColorInfo () |
Get vector of colorClass objects made from name and color associations. More... | |
The LabelFile class allows an interface to read and process CSAIL/LabelMe style label (.lif) files.
The LabelFile class is used to open and extract labeled object information from a CSAIL/LabelMe style label file, usually with a .lif extension. This file contains all the information about labeled objects in a specific image, as well as an encoded .png image file containing the RGB image that was used to generate the labeling information. This interface allows you to gather all necessary information from the label file and apply it to classified hyperspectral images.
Definition at line 108 of file labelfile.h.