| 17 | } |
| 18 | |
| 19 | QImage idToColor(const QImage &image_id, const Id2Labels& id_label) { |
| 20 | QImage result(image_id.size(), QImage::Format_RGB888); |
| 21 | idToColor(image_id, id_label, &result); |
| 22 | return result; |
| 23 | } |
| 24 | |
| 25 | void idToColor(const QImage &image_id, const Id2Labels& id_label, QImage *result) { |
| 26 | int id = 0; |
no outgoing calls
no test coverage detected