HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
|
The HSImage class is the base class for interacting with ENVI type hyperspectral images. More...
#include <hsimage.h>
Public Member Functions | |
HSImage () | |
HSImage (std::string header_location, std::string image_location) | |
HSImage (std::string header_location, std::string image_location, std::vector< std::string > &spec_location) | |
HSImage (const HSImage &other) | |
HSImage & | operator= (const HSImage &other) |
void | load (std::string header_location, std::string image_location) |
Load hyperspectral image into HSImage. More... | |
void | load (std::string header_location, std::string image_location, std::vector< std::string > spec_locations) |
Load hyperspectral image into HSImage. More... | |
void | loadSpectrometerData (std::vector< std::string > filenames) |
Load only spectrometer data for use with hyperspectral image. More... | |
void | addSpecDataToHeader (std::vector< std::string > filenames) |
Adds spectrometer file data to the corresponding .hdr file. More... | |
std::vector< u_int16_t > | getPixelSpectra (int row, int col) |
returns vector of pixel data More... | |
std::vector< u_int16_t > | getNormalizedPixelSpectra (int row, int col) |
Depracated. Do Not Use. More... | |
std::vector< double > | getPixelTransferFunction (int row, int col) |
Returns pixel "transfer function". Requires spectrometer data. More... | |
std::vector< cv::Mat > | getRange (const float lower_wavelength, const float upper_wavelength) |
Return a range of wavelength images as OpenCV cv::Mat objects. More... | |
std::vector< cv::Mat > | getSet (const std::vector< float > wavelength_set) |
Return a disparate set of wavelength images as OpenCV cv::Mat objects. More... | |
cv::Mat | operator[] (const float wavelength) |
Get single deisred wavelength image. More... | |
std::vector< u_int16_t > | getRawPixelData () |
Get all data formatted as a row major pixel array (row*col,bands) More... | |
std::vector< float > | getWavelengths () |
Return vector of imaged wavlengths. More... | |
std::vector< float > | getAmbientIntensities () |
Return vector of ambient wavelength intensites. More... | |
std::tuple< int, int, int > | getShape () |
Return tuple containing the shape of the HSImage data array (row,col,bands) More... | |
Static Public Member Functions | |
static bool | hasSpecFiles (std::string header_location) |
Checks if spectrometer file locations are stored as part of the ENVI .hdr file. More... | |
Public Attributes | |
std::string | acquisition_date |
int | tint |
int | samples |
int | lines |
int | bands |
int | fps |
int | binning [2] |
std::vector< float > | wavelengths |
std::vector< float > | fwhm |
std::vector< float > | ambient_intensities |
bool | has_spec_data |
std::string | img_file |
std::string | hdr_file |
std::string | nir_spec_file |
std::string | vis_spec_file |
The HSImage class is the base class for interacting with ENVI type hyperspectral images.
The HSImage class handles all the logistical operations required to support ENVI hyperspectral images in a C++ environment. The class is designed to handle ENVI type hyperspectral images as well as spectrometer files in the format of "wavelength, intensity\n" as a .txt file. The spectrometer files required to properly enable this behavior are a visible light file (400-700 nm) and a NIR file (700-1000 nm).
HSImage::HSImage | ( | ) |
Base Constructor
Definition at line 2 of file hsimage.cpp.
HSImage::HSImage | ( | std::string | header_location, |
std::string | image_location | ||
) |
Constuctor with file locations
Definition at line 7 of file hsimage.cpp.
HSImage::HSImage | ( | std::string | header_location, |
std::string | image_location, | ||
std::vector< std::string > & | spec_location | ||
) |
Constructor with spectrometer files
Definition at line 13 of file hsimage.cpp.
HSImage::HSImage | ( | const HSImage & | other | ) |
Reference Constructor
Definition at line 19 of file hsimage.cpp.
void HSImage::addSpecDataToHeader | ( | std::vector< std::string > | filenames | ) |
Adds spectrometer file data to the corresponding .hdr file.
filenames | location of spectrometer files This function modifies the .hdr file of the hyperspectral image to store information about the directory locations relative to the .hdr file where the spectromteter files corresponding to the hyperspectral image are stored. |
Definition at line 354 of file hsimage.cpp.
std::vector< float > HSImage::getAmbientIntensities | ( | ) |
Return vector of ambient wavelength intensites.
Definition at line 429 of file hsimage.cpp.
std::vector< u_int16_t > HSImage::getNormalizedPixelSpectra | ( | int | row, |
int | col | ||
) |
std::vector< u_int16_t > HSImage::getPixelSpectra | ( | int | row, |
int | col | ||
) |
returns vector of pixel data
row | row of target pixel |
col | column of target pixel |
Definition at line 406 of file hsimage.cpp.
std::vector< double > HSImage::getPixelTransferFunction | ( | int | row, |
int | col | ||
) |
Returns pixel "transfer function". Requires spectrometer data.
row | row of target pixel |
col | column of target pixel |
Definition at line 434 of file hsimage.cpp.
std::vector< cv::Mat > HSImage::getRange | ( | const float | lower_wavelength, |
const float | upper_wavelength | ||
) |
Return a range of wavelength images as OpenCV cv::Mat objects.
lower_wavelength | Bottom wavlength of the desired range |
upper_wavelength | Top wavlength of the desired range |
Definition at line 447 of file hsimage.cpp.
std::vector< u_int16_t > HSImage::getRawPixelData | ( | ) |
Get all data formatted as a row major pixel array (row*col,bands)
Definition at line 508 of file hsimage.cpp.
std::vector< cv::Mat > HSImage::getSet | ( | const std::vector< float > | wavelength_set | ) |
Return a disparate set of wavelength images as OpenCV cv::Mat objects.
wavelength_set | Vector of desired wavlengths |
Definition at line 467 of file hsimage.cpp.
std::tuple< int, int, int > HSImage::getShape | ( | ) |
Return tuple containing the shape of the HSImage data array (row,col,bands)
Definition at line 281 of file hsimage.cpp.
std::vector< float > HSImage::getWavelengths | ( | ) |
Return vector of imaged wavlengths.
Definition at line 424 of file hsimage.cpp.
|
static |
Checks if spectrometer file locations are stored as part of the ENVI .hdr file.
header_location | location of .hdr file |
Definition at line 367 of file hsimage.cpp.
void HSImage::load | ( | std::string | header_location, |
std::string | image_location | ||
) |
Load hyperspectral image into HSImage.
header_location | location of .hdr file |
image_location | location of .raw file |
Definition at line 82 of file hsimage.cpp.
void HSImage::load | ( | std::string | header_location, |
std::string | image_location, | ||
std::vector< std::string > | spec_locations | ||
) |
Load hyperspectral image into HSImage.
header_location | location of .hdr file |
image_location | location of .raw file |
spec_locations | location of the spectrometer files. |
Definition at line 98 of file hsimage.cpp.
void HSImage::loadSpectrometerData | ( | std::vector< std::string > | filenames | ) |
Load only spectrometer data for use with hyperspectral image.
filenames | locations of the spectrometer filenames. |
Definition at line 286 of file hsimage.cpp.
Copy Constructor
Definition at line 54 of file hsimage.cpp.
cv::Mat HSImage::operator[] | ( | const float | wavelength | ) |
Get single deisred wavelength image.
wavelength | Desired wavelength |
Definition at line 490 of file hsimage.cpp.
std::string HSImage::acquisition_date |
std::vector<float> HSImage::ambient_intensities |
int HSImage::bands |
int HSImage::binning[2] |
int HSImage::fps |
std::vector<float> HSImage::fwhm |
bool HSImage::has_spec_data |
std::string HSImage::hdr_file |
std::string HSImage::img_file |
int HSImage::lines |
std::string HSImage::nir_spec_file |
int HSImage::samples |
int HSImage::tint |
std::string HSImage::vis_spec_file |
std::vector<float> HSImage::wavelengths |