HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
classifiedhsimage.h
1 #ifndef CLASSIFIEDHSIMAGE_H
2 #define CLASSIFIEDHSIMAGE_H
3 
4 #include <map>
5 #include <utility>
6 
7 #include <opencv2/core.hpp>
8 #include <opencv2/imgcodecs.hpp>
9 #include <opencv2/highgui.hpp>
10 #include <opencv2/imgproc.hpp>
11 
12 //#include <boost/python.hpp>
13 
14 #include <Python.h>
15 
16 #include "pybind11_opencv_numpy/pybind11/pybind11.h"
17 #include "pybind11_opencv_numpy/pybind11/stl.h"
18 #include "pybind11_opencv_numpy/ndarray_converter.h"
19 
20 #include "hsimage.h"
21 #include "colormap.h"
22 #include "labelfile.h"
23 
24 
25 struct Vec3bCompare
26 {
27  bool operator() (const cv::Vec3b& lhs, const cv::Vec3b& rhs) const
28  {
29  return cv::norm(lhs, CV_L2) < cv::norm(rhs, CV_L2);
30  }
31 };
32 
40 typedef std::pair<std::string,cv::Vec3b> classColor;
41 
50 {
51 public:
59  ClassifiedHSImage(HSImage hsimage, cv::Mat labels, std::vector<classColor> c_names);
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);
75 
77  cv::Mat label;
78  std::map<std::string, cv::Vec3b> class_names;
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);
96 
102  std::vector<double> getAvgClassTF(std::string class_label);
109  std::vector<std::vector<double> > getClassTF(std::string class_label, unsigned int num_spectra = 100);
110 
117  std::string getPixelClass(int row, int col);
118 
125  void setSpectraClass(int row, int col, std::string class_label);
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);
142  cv::Mat getImageClass();
143 };
144 
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.
Definition: hsimage.h:113
std::string getPixelClass(int row, int col)
Returns class of given pixel.