From a3fd31e0d72d209f179a1924b69e8340d8a759be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20del=20Pino?= <idelpino@iri.upc.edu> Date: Tue, 28 Jun 2022 10:07:45 +0200 Subject: [PATCH] added some color labels for low obstacles and ground accumulated --- include/structs_definitions.h | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/include/structs_definitions.h b/include/structs_definitions.h index da29e83..763c5bb 100644 --- a/include/structs_definitions.h +++ b/include/structs_definitions.h @@ -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; -- GitLab