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

fixed bug in overhanging obstacles and improved visualization

parent da732ced
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,10 @@ ...@@ -10,6 +10,10 @@
#include <pcl/point_types.h> #include <pcl/point_types.h>
const int TITS_EVALUATION = 0;
const int TRAVEL_EVALUATION = 1;
const int KATA_EVALUATION = 2;
const float OUT_OF_RANGE = 1000.0; const float OUT_OF_RANGE = 1000.0;
const float MAX_RANGE = 100.0; const float MAX_RANGE = 100.0;
...@@ -94,6 +98,10 @@ const uint8_t R_CLASS_KITTI_OBSTACLE = 0; ...@@ -94,6 +98,10 @@ const uint8_t R_CLASS_KITTI_OBSTACLE = 0;
const uint8_t G_CLASS_KITTI_OBSTACLE = 255; const uint8_t G_CLASS_KITTI_OBSTACLE = 255;
const uint8_t B_CLASS_KITTI_OBSTACLE = 255; const uint8_t B_CLASS_KITTI_OBSTACLE = 255;
const uint8_t R_CLASS_NON_TRAVERSABLE = 255;
const uint8_t G_CLASS_NON_TRAVERSABLE = 0;
const uint8_t B_CLASS_NON_TRAVERSABLE = 255;
// Key obstacles like cars, pedestrians and so on are the rest of the classes so we will not explicitly write them here // Key obstacles like cars, pedestrians and so on are the rest of the classes so we will not explicitly write them here
//Custom labels not present in Kitti semantic //Custom labels not present in Kitti semantic
......
This diff is collapsed.
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