1 #include "classifiedhsimage.h"
5 std::vector<T> operator+(
const std::vector<T>& a,
const std::vector<T>& b)
7 assert(a.size() == b.size());
10 result.reserve(a.size());
12 std::transform(a.begin(), a.end(), b.begin(),
13 std::back_inserter(result), std::plus<T>());
22 load(hsimage,labels,c_names);
28 cv::Mat labels = cv::imread(label_file);
31 std::fstream in(class_hdr_file,std::ios_base::in);
34 std::vector<classColor> class_list;
37 const std::vector<target> *target_list = c.getTargetList(targetType::targetClass);
38 for(
auto t : *target_list)
40 std::string name = t.getTitle();
50 if(std::find(class_list.begin(),class_list.end(),c)==class_list.end())
51 class_list.push_back(c);
54 load(im,labels,class_list);
59 if (PyObject *err = PyErr_Occurred()) PyErr_Clear();
79 std::vector<std::vector<u_int16_t>> output;
85 std::vector<cv::Point> idx;
86 cv::inRange(
label,class_color,class_color,mask);
87 cv::findNonZero(mask,idx);
93 if(num_spectra > 0 && num_spectra < idx.size())
95 for(
unsigned int i=0; i< num_spectra; i++)
99 output.push_back(tmp);
104 for(
unsigned int i=0; i< idx.size(); i++)
106 cv::Point p = idx[i];
109 output.push_back(tmp);
119 std::vector<std::vector<double>> output;
125 cv::inRange(
label,class_color,class_color,mask);
126 cv::findNonZero(mask,idx);
127 if(cv::countNonZero(mask) > 0)
129 cv::randShuffle(idx);
131 if(num_spectra > 0 && num_spectra < idx.total())
133 for(
unsigned int i=0; i< num_spectra; i++)
135 cv::Point p = idx.at<cv::Point>(i);
137 output.push_back(tmp);
142 for(
unsigned int i=0; i< idx.total(); i++)
144 cv::Point p = idx.at<cv::Point>(i);
147 output.push_back(tmp);
160 cv::inRange(
label,class_color,class_color,mask);
161 cv::findNonZero(mask,idx);
162 std::vector<double> transfer_function,var;
164 transfer_function.assign(transfer_function.size(),0);
166 for(
unsigned int i=0;i<idx.total();i++)
168 cv::Point p = idx.at<cv::Point>(i);
170 var = tmp + transfer_function;
171 transfer_function = var;
174 transform(transfer_function.begin(), transfer_function.end(), transfer_function.begin(),
175 std::bind2nd( std::multiplies<double>(), 1.0/(
double)idx.total()));
177 return transfer_function;
182 cv::Vec3b val =
label.at<cv::Vec3b>(row,col);
197 label.at<cv::Vec3b>(row, col) = val;
202 for(
auto loc : pixel_locs)
207 label.at<cv::Vec3b>(loc.first, loc.second) = val;
213 class_labels.copyTo(
label);
216 for(
auto c : class_list)
225 void export_classifiedhsimage(pybind11::module m)
227 namespace py = pybind11;
231 py::class_<ClassifiedHSImage> classified_hsimage(m,
"classified_hsimage");
234 .def(py::init<
HSImage, cv::Mat, std::vector<classColor> >())
235 .def(py::init<std::string, std::string, std::string>())
244 .def(
"setSpectraClass", (
void (
ClassifiedHSImage::*)(std::vector<std::pair<int,int>>,std::string)) &ClassifiedHSImage::setSpectraClass,
"Set Spectra Class", py::arg(
"point_vector"), py::arg(
"class_name"))
The LabelFile class allows an interface to read and process CSAIL/LabelMe style label (...
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.
std::vector< classColor > getClassInfo()
Get vector of class name and color associations.
void setSpectraClass(int row, int col, std::string class_label)
Set class for a pixel by row,column.
std::vector< double > getPixelTransferFunction(int row, int col)
Returns pixel "transfer function". Requires spectrometer data.
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< float > wavelengths
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...
cv::Mat getLabelImage()
Get image showing class colors and contours for whole label file.
std::vector< u_int16_t > getPixelSpectra(int row, int col)
returns vector of pixel data
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.