HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
labelfile.h
1 #ifndef LABELFILE_H
2 #define LABELFILE_H
3 
4 //Provides a loading and access interface for .lif labelMe label files
5 
6 #include <string>
7 #include <vector>
8 #include <iostream>
9 #include <fstream>
10 #include <random>
11 #include <map>
12 
13 #include <opencv2/core.hpp>
14 #include <opencv2/imgcodecs.hpp>
15 #include <opencv2/imgproc.hpp>
16 
17 #include <boost/archive/iterators/base64_from_binary.hpp>
18 #include <boost/archive/iterators/binary_from_base64.hpp>
19 #include <boost/archive/iterators/transform_width.hpp>
20 #include <boost/archive/iterators/insert_linebreaks.hpp>
21 #include <boost/archive/iterators/remove_whitespace.hpp>
22 
23 #include "pybind11_opencv_numpy/pybind11/pybind11.h"
24 #include "pybind11_opencv_numpy/pybind11/stl.h"
25 #include "pybind11_opencv_numpy/ndarray_converter.h"
26 
27 #include "jsoncpp/json/json.h"
28 
36 typedef std::pair<std::string,cv::Vec3b> classColor;
37 
41 typedef std::pair<cv::Vec3b,std::string> colorClass;
42 
43 //converters for base64 image data
44 typedef boost::archive::iterators::transform_width<boost::archive::iterators::binary_from_base64<boost::archive::iterators::remove_whitespace<std::string::const_iterator> > ,8,6> it_binary_t;
45 typedef boost::archive::iterators::insert_linebreaks<boost::archive::iterators::base64_from_binary<boost::archive::iterators::transform_width<std::string::const_iterator,6,8> >, 72 > it_base64_t;
46 
47 
54 {
55 public:
59  LabeledObject();
60 
65  void setPolygon(std::vector<cv::Point> new_polygon);
70  void setName(std::string new_name);
75  void setColor(cv::Vec3b new_color);
76 
86  std::string getName();
91  cv::Vec3b getColor();
95  std::vector<cv::Point> getPolygon();
96 
97 private:
98  std::vector<cv::Point> polygon;
99  std::string name;
100  cv::Vec3b color;
101 };
102 
109 {
110 public:
114  LabelFile();
118  LabelFile(std::string filename);
122  void loadFile(std::string filename);
127  cv::Mat getRGBImage();
132  cv::Mat getLabelImage();
137  cv::Mat getViewingImage();
142  std::vector<classColor> getClassInfo();
147  std::vector<colorClass> getColorInfo();
148 
149 private:
150  void makeObject();
151  cv::Vec3b getRandomColor();
152  cv::Mat createLabelImage();
153  cv::Mat createRGBImage(Json::Value img_data);
154 
155  std::vector<LabeledObject> obj_vector;
156  cv::Mat rgb_image;
157  cv::Mat label_overlay;
158 
159  std::vector<classColor> class_info;
160  std::map<std::string,cv::Vec3b> class_map;
161 };
162 
163 #endif // LABELFILE_H
The LabelFile class allows an interface to read and process CSAIL/LabelMe style label (...
Definition: labelfile.h:108
std::vector< classColor > getClassInfo()
Get vector of class name and color associations.
Definition: labelfile.cpp:178
cv::Vec3b getColor()
Gets color of LabeledObject.
Definition: labelfile.cpp:217
The LabeledObject class represents one labeled object in an image with all the necessary information ...
Definition: labelfile.h:53
void setColor(cv::Vec3b new_color)
Sets color of object for label image.
Definition: labelfile.cpp:202
void loadFile(std::string filename)
Load file on disk into LabelFile instance.
Definition: labelfile.cpp:12
void setPolygon(std::vector< cv::Point > new_polygon)
Sets the object defining polygon to a new set of points.
Definition: labelfile.cpp:212
void setName(std::string new_name)
Sets name of object.
Definition: labelfile.cpp:207
cv::Mat getViewingImage()
Get image showing RGB scene with class information overlaid in semi-transparent color. Designed for human viewing, not computer analysis.
Definition: labelfile.cpp:170
std::pair< cv::Vec3b, std::string > colorClass
The colorClass typedef creates a simple interface that is reversed from classColor, for ease of use in creating Python dict() types relating a color to a class.
Definition: labelfile.h:41
LabelFile()
Default constructor for LabelFile.
Definition: labelfile.cpp:3
std::string getName()
Gets name of LabeledObject.
Definition: labelfile.cpp:222
std::pair< std::string, cv::Vec3b > classColor
The classColor typedef creates a simple interface for pairing a class name with a specific OpenCV col...
Definition: labelfile.h:36
cv::Mat getLabelImage()
Get image showing class colors and contours for whole label file.
Definition: labelfile.cpp:165
cv::Mat getRGBImage()
Get RGB image of original scene the labels were generated from.
Definition: labelfile.cpp:160
LabeledObject()
Default Constructor for LabeledObject.
Definition: labelfile.cpp:197
std::vector< cv::Point > getPolygon()
Gets shape polygon of LabeledObject.
Definition: labelfile.cpp:236
std::vector< colorClass > getColorInfo()
Get vector of colorClass objects made from name and color associations.
Definition: labelfile.cpp:183
classColor getInfo()
Gets class and name association info.
Definition: labelfile.cpp:227