15 std::ifstream lif_file;
16 lif_file.open(filename);
19 Json::Value json_data;
20 lif_file >> json_data;
23 Json::Value shapes = json_data[
"shapes"];
31 for(
auto shape : shapes)
37 std::string label = shape[
"label"].asString();
43 auto search = class_map.find(label);
44 if(search != class_map.end())
47 color = class_map[label];
52 color = getRandomColor();
53 class_map[label] = color;
57 std::vector<cv::Point> poly;
58 Json::Value points = shape[
"points"];
59 for(
auto point : points)
62 p.x = point[0].asInt();
63 p.y = point[1].asInt();
78 obj_vector.push_back(obj);
79 class_info.push_back(c);
83 Json::Value img_data = json_data[
"imageData"];
84 rgb_image = createRGBImage(img_data);
87 label_overlay = createLabelImage();
91 cv::Vec3b LabelFile::getRandomColor()
96 std::uniform_int_distribution<> color_dist(1,255);
99 color[0] = color_dist(e);
100 color[1] = color_dist(e);
101 color[2] = color_dist(e);
104 if(class_info.size() > 0)
106 for(
unsigned int idx = 0; idx < class_info.size(); idx++)
108 cv::Vec3b c = class_info[idx].second;
109 while(c[0] == color[0] && c[1] == color[1] && c[2] == color[2])
111 color[0] = color_dist(e);
112 color[1] = color_dist(e);
113 color[2] = color_dist(e);
123 cv::Mat LabelFile::createLabelImage()
125 cv::Mat overlay = cv::Mat::zeros(rgb_image.rows,rgb_image.cols,CV_8UC3);
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);
138 cv::Mat LabelFile::createRGBImage(Json::Value img_data)
141 std::string string_data = img_data.asString();
145 unsigned int paddChars = std::count(string_data.begin(),string_data.end(),
'=');
147 std::replace(string_data.begin(),string_data.end(),
'=',
'A');
149 std::string result(it_binary_t(string_data.begin()),it_binary_t(string_data.end()));
151 result.erase(result.end() - paddChars, result.end());
153 std::vector<char> data(result.begin(),result.end());
155 cv::Mat rgb = cv::imdecode(data,cv::IMREAD_COLOR);
167 return label_overlay;
173 cv::addWeighted(rgb_image,0.90,label_overlay,0.50,0,view);
185 std::vector<colorClass> color_info;
191 color_info.push_back(a);
214 polygon = new_polygon;
241 void export_labelfile(pybind11::module m)
243 namespace py = pybind11;
247 py::class_<LabelFile> labelfile (m,
"labelfile");
250 .def(py::init<std::string>())
std::vector< classColor > getClassInfo()
Get vector of class name and color associations.
cv::Vec3b getColor()
Gets color of LabeledObject.
The LabeledObject class represents one labeled object in an image with all the necessary information ...
void setColor(cv::Vec3b new_color)
Sets color of object for label image.
void loadFile(std::string filename)
Load file on disk into LabelFile instance.
void setPolygon(std::vector< cv::Point > new_polygon)
Sets the object defining polygon to a new set of points.
void setName(std::string new_name)
Sets name of object.
cv::Mat getViewingImage()
Get image showing RGB scene with class information overlaid in semi-transparent color. Designed for human viewing, not computer analysis.
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.
LabelFile()
Default constructor for LabelFile.
std::string getName()
Gets name of LabeledObject.
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.
cv::Mat getRGBImage()
Get RGB image of original scene the labels were generated from.
LabeledObject()
Default Constructor for LabeledObject.
std::vector< cv::Point > getPolygon()
Gets shape polygon of LabeledObject.
std::vector< colorClass > getColorInfo()
Get vector of colorClass objects made from name and color associations.
classColor getInfo()
Gets class and name association info.