1 #ifndef CLASSIFIEDHSIMAGE_H
2 #define CLASSIFIEDHSIMAGE_H
7 #include <opencv2/core.hpp>
8 #include <opencv2/imgcodecs.hpp>
9 #include <opencv2/highgui.hpp>
10 #include <opencv2/imgproc.hpp>
16 #include "pybind11_opencv_numpy/pybind11/pybind11.h"
17 #include "pybind11_opencv_numpy/pybind11/stl.h"
18 #include "pybind11_opencv_numpy/ndarray_converter.h"
22 #include "labelfile.h"
27 bool operator() (
const cv::Vec3b& lhs,
const cv::Vec3b& rhs)
const
29 return cv::norm(lhs, CV_L2) < cv::norm(rhs, CV_L2);
67 ClassifiedHSImage(std::string raw_file, std::string hdr_file, std::string label_file, std::string class_hdr_file);
74 ClassifiedHSImage(std::string raw_file, std::string hdr_file, std::string lif_file);
79 std::map<cv::Vec3b,std::string, Vec3bCompare>
class_keys;
88 void load(
HSImage hsimage, cv::Mat labels, std::vector<classColor> c_names);
95 std::vector<std::vector<u_int16_t> >
getClassSpectra(std::string class_label,
unsigned int num_spectra = 100);
109 std::vector<std::vector<double> >
getClassTF(std::string class_label,
unsigned int num_spectra = 100);
131 void setSpectraClass(std::vector<std::pair< int, int > > pixel_locs, std::string class_label);
137 void setImageClass(cv::Mat class_labels, std::vector<classColor> class_list);
147 #endif // CLASSIFIEDHSIMAGE_H
void setImageClass(cv::Mat class_labels, std::vector< classColor > class_list)
Set class for whole image with cv::Mat.
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.
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.
void setSpectraClass(int row, int col, std::string class_label)
Set class for a pixel by row,column.
The ClassifiedHSImage class is the interface for interacting with classified hyperspectral images...
std::map< cv::Vec3b, std::string, Vec3bCompare > class_keys
std::map< std::string, cv::Vec3b > class_names
std::vector< double > getAvgClassTF(std::string class_label)
Returns average transfer function for a specfied class.
cv::Mat getImageClass()
Get cv::Mat showing image classes.
void load(HSImage hsimage, cv::Mat labels, std::vector< classColor > c_names)
Load ClassifiedHSImage from data in memory.
std::pair< std::string, cv::Vec3b > classColor
The classColor typedef creates a simple interface for pairing a class name with a specific OpenCV col...
The HSImage class is the base class for interacting with ENVI type hyperspectral images.
std::string getPixelClass(int row, int col)
Returns class of given pixel.