85 #include <unordered_map>
92 #include <opencv2/core.hpp>
93 #include <opencv2/imgcodecs.hpp>
94 #include <opencv2/highgui.hpp>
96 #include "pybind11_opencv_numpy/pybind11/pybind11.h"
97 #include "pybind11_opencv_numpy/pybind11/stl.h"
98 #include "pybind11_opencv_numpy/ndarray_converter.h"
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);
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);
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);
248 void loadHeader(std::string header_location);
254 void loadRawImage(std::string image_location);
256 std::unordered_map<float,uchar*> image_map;
260 std::vector<u_int16_t> image_data;
261 std::vector<u_int16_t> pixel_data;
263 std::string createRelativeSpecFilepath(std::string abs_spec_filepath);
264 std::string createAbsoluteSpecFilepath(std::string rel_spec_filepath);
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; }
273 static std::vector<std::string> &split(
const std::string &s,
char delim, std::vector<std::string> &elems) {
274 std::stringstream ss(s);
276 while (std::getline(ss, item, delim)) {
279 elems.push_back(item);
285 static std::vector<std::string> split(
const std::string &s,
char delim) {
286 std::vector<std::string> elems;
287 split(s, delim, elems);
std::string acquisition_date
std::vector< u_int16_t > getNormalizedPixelSpectra(int row, int col)
Depracated. Do Not Use.
std::vector< cv::Mat > getSet(const std::vector< float > wavelength_set)
Return a disparate set of wavelength images as OpenCV cv::Mat objects.
std::vector< float > getWavelengths()
Return vector of imaged wavlengths.
HSImage & operator=(const HSImage &other)
std::vector< float > getAmbientIntensities()
Return vector of ambient wavelength intensites.
void addSpecDataToHeader(std::vector< std::string > filenames)
Adds spectrometer file data to the corresponding .hdr file.
std::vector< double > getPixelTransferFunction(int row, int col)
Returns pixel "transfer function". Requires spectrometer data.
cv::Mat operator[](const float wavelength)
Get single deisred wavelength image.
std::string nir_spec_file
static bool hasSpecFiles(std::string header_location)
Checks if spectrometer file locations are stored as part of the ENVI .hdr file.
void load(std::string header_location, std::string image_location)
Load hyperspectral image into HSImage.
std::vector< u_int16_t > getRawPixelData()
Get all data formatted as a row major pixel array (row*col,bands)
std::vector< float > wavelengths
void loadSpectrometerData(std::vector< std::string > filenames)
Load only spectrometer data for use with hyperspectral image.
std::tuple< int, int, int > getShape()
Return tuple containing the shape of the HSImage data array (row,col,bands)
std::string vis_spec_file
std::vector< u_int16_t > getPixelSpectra(int row, int col)
returns vector of pixel data
std::vector< float > ambient_intensities
The HSImage class is the base class for interacting with ENVI type hyperspectral images.
std::vector< cv::Mat > getRange(const float lower_wavelength, const float upper_wavelength)
Return a range of wavelength images as OpenCV cv::Mat objects.
std::vector< float > fwhm