HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
Public Member Functions | Public Attributes | List of all members
ClassifiedHSImage Class Reference

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
 

Detailed Description

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.

Constructor & Destructor Documentation

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.

Parameters
hsimageInitialized and loaded HSImage object.
labelscv::Mat containing pixels colored with the label colors specified in c_names.
c_namesVector 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.

Parameters
raw_file.raw hyperspectral image file
hdr_file.hdr hyperspectral image file
label_fileImage 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.

Parameters
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.

Member Function Documentation

std::vector< double > ClassifiedHSImage::getAvgClassTF ( std::string  class_label)

Returns average transfer function for a specfied class.

Parameters
class_labelClass to retrieve.
Returns
Vector containing specified average transfer function intensities.

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.

Parameters
class_labelClass to return spectra from.
num_spectraMax number of returned spectra.
Returns
Vector of spectra vectors. Returns empty vector if class_label is not present in image.

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.

Parameters
class_labelClass to retrieve.
num_spectraMax number of returned transfer functions.
Returns
Vector of transfer function vectors.

Definition at line 117 of file classifiedhsimage.cpp.

cv::Mat ClassifiedHSImage::getImageClass ( )

Get cv::Mat showing image classes.

Returns
cv::Mat with color overlay for each class

Definition at line 220 of file classifiedhsimage.cpp.

std::string ClassifiedHSImage::getPixelClass ( int  row,
int  col 
)

Returns class of given pixel.

Parameters
rowRow of pixel
colColumn of pixel
Returns
Class name at pixel(row,col)

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.

Parameters
hsimageLoaded HSImage.
labelsCreated OpenCV cv::Mat labeling data image.
c_namesVector 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.

Parameters
class_labelscv::Mat containing the labeling data for entire image. Must be same number of rows and columns as hyperspectral image.
class_listVector 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.

Parameters
rowRow of pixel to set
colColumn of pixel to set
class_labelLabel 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.

Parameters
pixel_locsVector of std::pairs containing a (row,column) set of pixels to set
class_labelLabel of deisred class for specified pixel set

Definition at line 200 of file classifiedhsimage.cpp.

Member Data Documentation

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.


The documentation for this class was generated from the following files: