HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
hsimage.h
1 
80 #ifndef HSIMAGE_H
81 #define HSIMAGE_H
82 
83 #include <iostream>
84 #include <fstream>
85 #include <unordered_map>
86 #include <vector>
87 #include <string>
88 #include <tuple>
89 #include <algorithm>
90 #include <memory>
91 
92 #include <opencv2/core.hpp>
93 #include <opencv2/imgcodecs.hpp>
94 #include <opencv2/highgui.hpp>
95 
96 #include "pybind11_opencv_numpy/pybind11/pybind11.h"
97 #include "pybind11_opencv_numpy/pybind11/stl.h"
98 #include "pybind11_opencv_numpy/ndarray_converter.h"
99 
113 class HSImage
114 {
115 
116 public:
117  HSImage();
118  HSImage(std::string header_location, std::string image_location);
119  HSImage(std::string header_location, std::string image_location, std::vector<std::string> &spec_location);
120  HSImage(const HSImage& other);
121  HSImage& operator=( const HSImage& other);
128  void load(std::string header_location, std::string image_location);
135  void load(std::string header_location, std::string image_location, std::vector<std::string> spec_locations);
140  void loadSpectrometerData(std::vector<std::string> filenames);
141 
147  static bool hasSpecFiles(std::string header_location);
153  void addSpecDataToHeader(std::vector<std::string> filenames);
154 
161  std::vector<u_int16_t> getPixelSpectra(int row, int col);
168  std::vector<u_int16_t> getNormalizedPixelSpectra(int row, int col);
176  std::vector<double> getPixelTransferFunction(int row, int col);
177 
184  std::vector<cv::Mat> getRange(const float lower_wavelength, const float upper_wavelength);
190  std::vector<cv::Mat> getSet(const std::vector<float> wavelength_set);
196  cv::Mat operator[] (const float wavelength);
197 
202  std::vector<u_int16_t> getRawPixelData();
203 
208  std::vector<float> getWavelengths();
209 
214  std::vector<float> getAmbientIntensities();
215 
220  std::tuple<int,int,int> getShape();
221 
222 
223  //image metadata
224  std::string acquisition_date;
225  int tint;
226  int samples;
227  int lines;
228  int bands;
229  int fps;
230  int binning[2];
231  std::vector<float> wavelengths;
232  std::vector<float> fwhm;
233  std::vector<float> ambient_intensities;
236  //image file location
237  std::string img_file;
238  std::string hdr_file;
239  std::string nir_spec_file;
240  std::string vis_spec_file;
242 private:
248  void loadHeader(std::string header_location);
254  void loadRawImage(std::string image_location);
255 
256  std::unordered_map<float,uchar*> image_map;
257  //std::unique_ptr<u_int16_t[]> image_data;
258  //std::unique_ptr<u_int16_t[]> pixel_data;
259 
260  std::vector<u_int16_t> image_data;
261  std::vector<u_int16_t> pixel_data;
262 
263  std::string createRelativeSpecFilepath(std::string abs_spec_filepath);
264  std::string createAbsoluteSpecFilepath(std::string rel_spec_filepath);
265 
266  template <typename T>
267  static T closest(std::vector<T> const& vec, T value) {
268  auto const it = std::lower_bound(vec.begin(), vec.end(), value);
269  if (it == vec.end()) { return -1; }
270  return *it;
271  }
272 
273  static std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems) {
274  std::stringstream ss(s);
275  std::string item;
276  while (std::getline(ss, item, delim)) {
277  if(!item.empty())
278  {
279  elems.push_back(item);
280  }
281  }
282  return elems;
283  }
284 
285  static std::vector<std::string> split(const std::string &s, char delim) {
286  std::vector<std::string> elems;
287  split(s, delim, elems);
288  return elems;
289  }
290 
291 };
292 
295 #endif // HSIMAGE_H
std::string acquisition_date
Definition: hsimage.h:224
int bands
Definition: hsimage.h:228
std::vector< u_int16_t > getNormalizedPixelSpectra(int row, int col)
Depracated. Do Not Use.
Definition: hsimage.cpp:413
std::vector< cv::Mat > getSet(const std::vector< float > wavelength_set)
Return a disparate set of wavelength images as OpenCV cv::Mat objects.
Definition: hsimage.cpp:467
std::vector< float > getWavelengths()
Return vector of imaged wavlengths.
Definition: hsimage.cpp:424
int binning[2]
Definition: hsimage.h:230
HSImage & operator=(const HSImage &other)
Definition: hsimage.cpp:54
std::vector< float > getAmbientIntensities()
Return vector of ambient wavelength intensites.
Definition: hsimage.cpp:429
void addSpecDataToHeader(std::vector< std::string > filenames)
Adds spectrometer file data to the corresponding .hdr file.
Definition: hsimage.cpp:354
std::string hdr_file
Definition: hsimage.h:238
int samples
Definition: hsimage.h:226
bool has_spec_data
Definition: hsimage.h:234
std::vector< double > getPixelTransferFunction(int row, int col)
Returns pixel "transfer function". Requires spectrometer data.
Definition: hsimage.cpp:434
cv::Mat operator[](const float wavelength)
Get single deisred wavelength image.
Definition: hsimage.cpp:490
int fps
Definition: hsimage.h:229
std::string nir_spec_file
Definition: hsimage.h:239
static bool hasSpecFiles(std::string header_location)
Checks if spectrometer file locations are stored as part of the ENVI .hdr file.
Definition: hsimage.cpp:367
void load(std::string header_location, std::string image_location)
Load hyperspectral image into HSImage.
Definition: hsimage.cpp:82
std::vector< u_int16_t > getRawPixelData()
Get all data formatted as a row major pixel array (row*col,bands)
Definition: hsimage.cpp:508
std::vector< float > wavelengths
Definition: hsimage.h:231
int tint
Definition: hsimage.h:225
void loadSpectrometerData(std::vector< std::string > filenames)
Load only spectrometer data for use with hyperspectral image.
Definition: hsimage.cpp:286
std::tuple< int, int, int > getShape()
Return tuple containing the shape of the HSImage data array (row,col,bands)
Definition: hsimage.cpp:281
std::string vis_spec_file
Definition: hsimage.h:240
HSImage()
Definition: hsimage.cpp:2
std::vector< u_int16_t > getPixelSpectra(int row, int col)
returns vector of pixel data
Definition: hsimage.cpp:406
std::string img_file
Definition: hsimage.h:237
int lines
Definition: hsimage.h:227
std::vector< float > ambient_intensities
Definition: hsimage.h:233
The HSImage class is the base class for interacting with ENVI type hyperspectral images.
Definition: hsimage.h:113
std::vector< cv::Mat > getRange(const float lower_wavelength, const float upper_wavelength)
Return a range of wavelength images as OpenCV cv::Mat objects.
Definition: hsimage.cpp:447
std::vector< float > fwhm
Definition: hsimage.h:232