HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
|
The ClassifiedHSImage class is the interface for interacting with classified hyperspectral images. More...
#include <classifiedhsimage.h>
Public Member Functions | |
ClassifiedHSImage () | |
ClassifiedHSImage (HSImage hsimage, cv::Mat labels, std::vector< classColor > c_names) | |
Constructor with HSImage, cv::Mat containing labeling information and a vector of classColor pairs. More... | |
ClassifiedHSImage (std::string raw_file, std::string hdr_file, std::string label_file, std::string class_hdr_file) | |
Constructor for loading ClassifiedHSImage from files. More... | |
ClassifiedHSImage (std::string raw_file, std::string hdr_file, std::string lif_file) | |
Constructor for loading ClassifiedHSImage from .lif labeling style. More... | |
void | load (HSImage hsimage, cv::Mat labels, std::vector< classColor > c_names) |
Load ClassifiedHSImage from data in memory. More... | |
std::vector< std::vector < u_int16_t > > | getClassSpectra (std::string class_label, unsigned int num_spectra=100) |
Returns up to num_spectra pixel spectra of the specified class. More... | |
std::vector< double > | getAvgClassTF (std::string class_label) |
Returns average transfer function for a specfied class. More... | |
std::vector< std::vector < double > > | getClassTF (std::string class_label, unsigned int num_spectra=100) |
Returns up to num_spectra pixel transfer function intensities of the specified class. More... | |
std::string | getPixelClass (int row, int col) |
Returns class of given pixel. More... | |
void | setSpectraClass (int row, int col, std::string class_label) |
Set class for a pixel by row,column. More... | |
void | setSpectraClass (std::vector< std::pair< int, int > > pixel_locs, std::string class_label) |
Set class for a group of pixels specified in a vector. More... | |
void | setImageClass (cv::Mat class_labels, std::vector< classColor > class_list) |
Set class for whole image with cv::Mat. More... | |
cv::Mat | getImageClass () |
Get cv::Mat showing image classes. More... | |
Public Attributes | |
HSImage | image |
cv::Mat | label |
std::map< std::string, cv::Vec3b > | class_names |
std::map< cv::Vec3b, std::string, Vec3bCompare > | class_keys |
The ClassifiedHSImage class is the interface for interacting with classified hyperspectral images.
The ClassifiedHSImage class contains an HSImage as its internal logistic engine and adds functionality aimed at classification and detection research. The class allows for retreival of pixels by class label and the setting of image classes by pixel or by setting an OpenCV cv::Mat object with the pixels colored according to the class label color.
Does not current support internal saving of files. Under construction.
Definition at line 49 of file classifiedhsimage.h.
ClassifiedHSImage::ClassifiedHSImage | ( | ) |
Base constructor
Definition at line 18 of file classifiedhsimage.cpp.
ClassifiedHSImage::ClassifiedHSImage | ( | HSImage | hsimage, |
cv::Mat | labels, | ||
std::vector< classColor > | c_names | ||
) |
Constructor with HSImage, cv::Mat containing labeling information and a vector of classColor pairs.
hsimage | Initialized and loaded HSImage object. |
labels | cv::Mat containing pixels colored with the label colors specified in c_names. |
c_names | Vector of classColor pairs with class names and label colors. |
Definition at line 20 of file classifiedhsimage.cpp.
ClassifiedHSImage::ClassifiedHSImage | ( | std::string | raw_file, |
std::string | hdr_file, | ||
std::string | label_file, | ||
std::string | class_hdr_file | ||
) |
Constructor for loading ClassifiedHSImage from files.
raw_file | .raw hyperspectral image file |
hdr_file | .hdr hyperspectral image file |
label_file | Image file containing label image |
class_hdr_file | .hdr file with class information about color/name pairs |
Definition at line 25 of file classifiedhsimage.cpp.
ClassifiedHSImage::ClassifiedHSImage | ( | std::string | raw_file, |
std::string | hdr_file, | ||
std::string | lif_file | ||
) |
Constructor for loading ClassifiedHSImage from .lif labeling style.
raw_file | .raw hyperspectral image file |
hdr_file | .hdr hyperspectral image file |
lif_file | .lif LabelMe style label file |
Definition at line 57 of file classifiedhsimage.cpp.
std::vector< double > ClassifiedHSImage::getAvgClassTF | ( | std::string | class_label | ) |
Returns average transfer function for a specfied class.
class_label | Class to retrieve. |
Definition at line 156 of file classifiedhsimage.cpp.
std::vector< std::vector< u_int16_t > > ClassifiedHSImage::getClassSpectra | ( | std::string | class_label, |
unsigned int | num_spectra = 100 |
||
) |
Returns up to num_spectra pixel spectra of the specified class.
class_label | Class to return spectra from. |
num_spectra | Max number of returned spectra. |
Definition at line 77 of file classifiedhsimage.cpp.
std::vector< std::vector< double > > ClassifiedHSImage::getClassTF | ( | std::string | class_label, |
unsigned int | num_spectra = 100 |
||
) |
Returns up to num_spectra pixel transfer function intensities of the specified class.
class_label | Class to retrieve. |
num_spectra | Max number of returned transfer functions. |
Definition at line 117 of file classifiedhsimage.cpp.
cv::Mat ClassifiedHSImage::getImageClass | ( | ) |
Get cv::Mat showing image classes.
Definition at line 220 of file classifiedhsimage.cpp.
std::string ClassifiedHSImage::getPixelClass | ( | int | row, |
int | col | ||
) |
Returns class of given pixel.
row | Row of pixel |
col | Column of pixel |
Definition at line 180 of file classifiedhsimage.cpp.
void ClassifiedHSImage::load | ( | HSImage | hsimage, |
cv::Mat | labels, | ||
std::vector< classColor > | c_names | ||
) |
Load ClassifiedHSImage from data in memory.
hsimage | Loaded HSImage. |
labels | Created OpenCV cv::Mat labeling data image. |
c_names | Vector of classColor pairs. |
Definition at line 65 of file classifiedhsimage.cpp.
void ClassifiedHSImage::setImageClass | ( | cv::Mat | class_labels, |
std::vector< classColor > | class_list | ||
) |
Set class for whole image with cv::Mat.
class_labels | cv::Mat containing the labeling data for entire image. Must be same number of rows and columns as hyperspectral image. |
class_list | Vector of classColor objects containing name and color information for the classes in class_labels. |
Definition at line 211 of file classifiedhsimage.cpp.
void ClassifiedHSImage::setSpectraClass | ( | int | row, |
int | col, | ||
std::string | class_label | ||
) |
Set class for a pixel by row,column.
row | Row of pixel to set |
col | Column of pixel to set |
class_label | Label of desired class for specified pixel. |
Definition at line 192 of file classifiedhsimage.cpp.
void ClassifiedHSImage::setSpectraClass | ( | std::vector< std::pair< int, int > > | pixel_locs, |
std::string | class_label | ||
) |
Set class for a group of pixels specified in a vector.
pixel_locs | Vector of std::pairs containing a (row,column) set of pixels to set |
class_label | Label of deisred class for specified pixel set |
Definition at line 200 of file classifiedhsimage.cpp.
std::map<cv::Vec3b,std::string, Vec3bCompare> ClassifiedHSImage::class_keys |
std::map containing key value paring betweeen color and class name. Inverse of class_names
Definition at line 79 of file classifiedhsimage.h.
std::map<std::string, cv::Vec3b> ClassifiedHSImage::class_names |
std::map containing key value paring betweeen class name and color.
Definition at line 78 of file classifiedhsimage.h.
HSImage ClassifiedHSImage::image |
HSImage object containing hyperspectral data.
Definition at line 76 of file classifiedhsimage.h.
cv::Mat ClassifiedHSImage::label |
OpenCV cv::Mat image containing labeling data.
Definition at line 77 of file classifiedhsimage.h.