HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
|
The LabeledObject class represents one labeled object in an image with all the necessary information to identify it. More...
#include <labelfile.h>
Public Member Functions | |
LabeledObject () | |
Default Constructor for LabeledObject. | |
void | setPolygon (std::vector< cv::Point > new_polygon) |
Sets the object defining polygon to a new set of points. More... | |
void | setName (std::string new_name) |
Sets name of object. More... | |
void | setColor (cv::Vec3b new_color) |
Sets color of object for label image. More... | |
classColor | getInfo () |
Gets class and name association info. More... | |
std::string | getName () |
Gets name of LabeledObject. More... | |
cv::Vec3b | getColor () |
Gets color of LabeledObject. More... | |
std::vector< cv::Point > | getPolygon () |
Gets shape polygon of LabeledObject. | |
The LabeledObject class represents one labeled object in an image with all the necessary information to identify it.
The LabeledObject class is used to store information about labeled image objects with all the information that is available about that object including its name, shape, and class label color. This information is used to generate a pixel by pixel class representation in memory, but the information is stored on the hard drive as a polygon with corresponding information in a label (.lif) file.
Definition at line 53 of file labelfile.h.