HSImage
Hyperspectral Image Interface Library for ENVI-BIL image files
 All Classes Functions Variables Typedefs Groups Pages
labelfile.cpp
1 #include "labelfile.h"
2 
4 {
5 }
6 
7 LabelFile::LabelFile(std::string filename)
8 {
9  loadFile(filename);
10 }
11 
12 void LabelFile::loadFile(std::string filename)
13 {
14  //load .lif file
15  std::ifstream lif_file;
16  lif_file.open(filename);
17 
18  //grab json data
19  Json::Value json_data;
20  lif_file >> json_data;
21 
22  //grab shapes
23  Json::Value shapes = json_data["shapes"];
24 
25  //prepare instance vectors
26  obj_vector.clear();
27  class_info.clear();
28  class_map.clear();
29 
30  //process each shape individually
31  for(auto shape : shapes)
32  {
33  //process each shape here
34  LabeledObject obj;
35 
36  //get object label
37  std::string label = shape["label"].asString();
38 
39  //get object color
40  cv::Vec3b color;
41 
42  //look to see if label already present in image
43  auto search = class_map.find(label);
44  if(search != class_map.end())
45  {
46  //if label is present, get color from color_map
47  color = class_map[label];
48  }
49  else
50  {
51  //if label is not present, get random color and add it to color map
52  color = getRandomColor();
53  class_map[label] = color;
54  }
55 
56  //get polygon points
57  std::vector<cv::Point> poly;
58  Json::Value points = shape["points"];
59  for(auto point : points)
60  {
61  cv::Point p;
62  p.x = point[0].asInt();
63  p.y = point[1].asInt();
64  poly.push_back(p);
65  }
66 
67  //create Object
68  obj.setName(label);
69  obj.setColor(color);
70  obj.setPolygon(poly);
71 
72  //create classColor object
73  classColor c;
74  c.first = label;
75  c.second = color;
76 
77  //push into vectors
78  obj_vector.push_back(obj);
79  class_info.push_back(c);
80  }
81 
82  //create rgb image
83  Json::Value img_data = json_data["imageData"];
84  rgb_image = createRGBImage(img_data);
85 
86  //create label image
87  label_overlay = createLabelImage();
88 
89 }
90 
91 cv::Vec3b LabelFile::getRandomColor()
92 {
93  std::random_device r;
94  std::mt19937 e(r());
95 
96  std::uniform_int_distribution<> color_dist(1,255);
97 
98  cv::Vec3b color;
99  color[0] = color_dist(e);
100  color[1] = color_dist(e);
101  color[2] = color_dist(e);
102 
103  //check for conflicts with used colors
104  if(class_info.size() > 0)
105  {
106  for(unsigned int idx = 0; idx < class_info.size(); idx++)
107  {
108  cv::Vec3b c = class_info[idx].second;
109  while(c[0] == color[0] && c[1] == color[1] && c[2] == color[2])
110  {
111  color[0] = color_dist(e);
112  color[1] = color_dist(e);
113  color[2] = color_dist(e);
114 
115  idx = -1;
116  }
117  }
118  }
119 
120  return color;
121 }
122 
123 cv::Mat LabelFile::createLabelImage()
124 {
125  cv::Mat overlay = cv::Mat::zeros(rgb_image.rows,rgb_image.cols,CV_8UC3);
126 
127  for(LabeledObject obj : obj_vector)
128  {
129  std::vector<std::vector<cv::Point>> polygon;
130  polygon.push_back(obj.getPolygon());
131  cv::Vec3b c= obj.getColor();
132  cv::fillPoly(overlay,polygon,cv::Scalar(c[0],c[1],c[2]),cv::LINE_8);
133  }
134 
135  return overlay;
136 }
137 
138 cv::Mat LabelFile::createRGBImage(Json::Value img_data)
139 {
140  //load image data from json as string
141  std::string string_data = img_data.asString();
142 
143  //decode base64 data that the image is stored in
144  //get padding length
145  unsigned int paddChars = std::count(string_data.begin(),string_data.end(), '=');
146  //move padding to correct alphabet for conversion
147  std::replace(string_data.begin(),string_data.end(),'=','A');
148  //copy to new string using base64 iterators from boost
149  std::string result(it_binary_t(string_data.begin()),it_binary_t(string_data.end()));
150  //remove padding for use
151  result.erase(result.end() - paddChars, result.end());
152  //convert to char vector
153  std::vector<char> data(result.begin(),result.end());
154  //decode image into cv::Mat
155  cv::Mat rgb = cv::imdecode(data,cv::IMREAD_COLOR);
156 
157  return rgb;
158 }
159 
161 {
162  return rgb_image;
163 }
164 
166 {
167  return label_overlay;
168 }
169 
171 {
172  cv::Mat view;
173  cv::addWeighted(rgb_image,0.90,label_overlay,0.50,0,view);
174 
175  return view;
176 }
177 
178 std::vector<classColor> LabelFile::getClassInfo()
179 {
180  return class_info;
181 }
182 
183 std::vector<colorClass> LabelFile::getColorInfo()
184 {
185  std::vector<colorClass> color_info;
186  for(classColor c : class_info)
187  {
188  colorClass a;
189  a.first = c.second;
190  a.second = c.first;
191  color_info.push_back(a);
192  }
193  return color_info;
194 }
196 
198 {
199 
200 }
201 
202 void LabeledObject::setColor(cv::Vec3b new_color)
203 {
204  color = new_color;
205 }
206 
207 void LabeledObject::setName(std::string new_name)
208 {
209  name = new_name;
210 }
211 
212 void LabeledObject::setPolygon(std::vector<cv::Point> new_polygon)
213 {
214  polygon = new_polygon;
215 }
216 
218 {
219  return color;
220 }
221 
223 {
224  return name;
225 }
226 
228 {
229  classColor c;
230  c.first = name;
231  c.second = color;
232 
233  return c;
234 }
235 
236 std::vector<cv::Point> LabeledObject::getPolygon()
237 {
238  return polygon;
239 }
240 
241 void export_labelfile(pybind11::module m)
242 {
243  namespace py = pybind11;
244 
245 // py::module m2 = m.def_submodule("labelfile","CSAIL/LabelMe label file interface module");
246 
247  py::class_<LabelFile> labelfile (m, "labelfile");
248  labelfile
249  .def(py::init<>())
250  .def(py::init<std::string>())
251  .def("load", &LabelFile::loadFile)
252  .def("getRGBImage", &LabelFile::getRGBImage)
253  .def("getLabelImage", &LabelFile::getLabelImage)
254  .def("getOverlayImage", &LabelFile::getViewingImage)
255  .def("getClassInfo", &LabelFile::getClassInfo)
256  .def("getColorInfo",&LabelFile::getColorInfo);
257 }
258 
259 //void export_labelfile()
260 //{
261 // namespace bp = boost::python;
262 // //map the namespace to a submodule
263 // //make "from myPackage.class1 import <anything>" work
264 // bp::object hsimageModule(bp::handle<>(bp::borrowed(PyImport_AddModule("hsi.labelfile"))));
265 // //make "from myPackage import class1 work
266 // bp::scope().attr("labelfile") = hsimageModule;
267 // //set current scope to the new sub-module
268 // bp::scope io_scope = hsimageModule;
269 
270 // bp::class_<LabelFile>("labelfile")
271 // .def(bp::init<std::string>())
272 // .def("load", &LabelFile::loadFile)
273 // .def("getRGBImage", &LabelFile::getRGBImage)
274 // .def("getLabelImage", &LabelFile::getLabelImage)
275 // .def("getOverlayImage", &LabelFile::getViewingImage)
276 // .def("getClassInfo", &LabelFile::getClassInfo);
277 //}
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...
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