Skip to content
Snippets Groups Projects
Commit a3fd31e0 authored by Iván del Pino's avatar Iván del Pino
Browse files

added some color labels for low obstacles and ground accumulated

parent 2e817350
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ const int CLASS_GROUND = 46;
const int CLASS_OBSTACLE = 100;
const int CLASS_OVERHANGING_OBSTACLE = 15;
const int CLASS_LOW_OBSTACLE = 24;
const int CLASS_NEGATIVE_OBSTACLE = 26;
const int CLASS_GROUND_ACCUMULATED = 26;
const int CLASS_EDGE_DISCARDED_TOO_MUCH_MAHALANOBIS_DISTANCE = 25;
const int CLASS_EDGE_ACCEPTED = 27;
......@@ -79,10 +79,18 @@ const uint8_t R_CLASS_GROUND = 0;
const uint8_t G_CLASS_GROUND = 0;
const uint8_t B_CLASS_GROUND = 255;
const uint8_t R_CLASS_GROUND_ACCUMULATED = 52;
const uint8_t G_CLASS_GROUND_ACCUMULATED = 101;
const uint8_t B_CLASS_GROUND_ACCUMULATED = 164;
const uint8_t R_CLASS_OBSTACLE = 0;
const uint8_t G_CLASS_OBSTACLE = 255;
const uint8_t B_CLASS_OBSTACLE = 0;
const uint8_t R_CLASS_LOW_OBSTACLE = 255;
const uint8_t G_CLASS_LOW_OBSTACLE = 0;
const uint8_t B_CLASS_LOW_OBSTACLE = 0;
const uint8_t R_CLASS_OVERHANGING_OBSTACLE = 0;
const uint8_t G_CLASS_OVERHANGING_OBSTACLE = 255;
const uint8_t B_CLASS_OVERHANGING_OBSTACLE = 255;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment