|
@@ -22,17 +22,17 @@ class Params
|
|
|
public:
|
|
|
static const int num_classes = 3;
|
|
|
const char *class_name [num_classes] = { "Car","Pedestrian","Cyclist",};
|
|
|
- const float min_x_range = -80;
|
|
|
- const float max_x_range = 80;
|
|
|
- const float min_y_range = -80;
|
|
|
- const float max_y_range = 80;
|
|
|
+ const float min_x_range = -20.0;
|
|
|
+ const float max_x_range = 49.12;
|
|
|
+ const float min_y_range = -39.68;
|
|
|
+ const float max_y_range = 39.68;
|
|
|
const float min_z_range = -3.0;
|
|
|
const float max_z_range = 1.0;
|
|
|
// the size of a pillar
|
|
|
- const float pillar_x_size = 0.4;
|
|
|
- const float pillar_y_size = 0.4;
|
|
|
+ const float pillar_x_size = 0.16;
|
|
|
+ const float pillar_y_size = 0.16;
|
|
|
const float pillar_z_size = 4.0;
|
|
|
- const int max_num_points_per_pillar = 16;
|
|
|
+ const int max_num_points_per_pillar = 32;
|
|
|
const int num_point_values = 4;
|
|
|
// the number of feature maps for pillar scatter
|
|
|
const int num_feature_scatter = 64;
|