Context:
Hi there! I'm from the OTH Regensburg Formula Student Team and we are looking to contribute and utilize the dataset from your repository. Currently, I am in the process of exporting our data into the required format. However, I have encountered some confusion regarding the cone labels.
Questions:
- Cone Bounding Box Values:
The instructions mention using the mmdetection3d label standard, which is primarily designed for bounding boxes. Upon inspecting the generate_scene.py file, I noticed the following hardcoded values:
# Save to file
with open(f"{folder_path}/labels/{filenum:07d}.txt", "w") as f:
for x, y, c in zip(x_values, y_values, colors):
if c == YELLOR_C:
cone_type = 'Cone_Yellow'
elif c == BLUE_C:
cone_type = 'Cone_Blue'
elif c == BIG_C:
cone_type = 'Cone_Big'
elif c == ORANGE_C:
cone_type = 'Cone_Orange'
else:
continue
f.write(f"{x} {y} 0.0 0.23 0.23 0.33 0.0 {cone_type}\n")
Should everyone use these fixed bounding box values (0.0 0.23 0.23 0.33 0.0) for all cones, or should we create individual bounding boxes based on the point cloud points associated with each cone?
-
Unlabeled Point Clouds:
Are unlabeled point clouds required or optional? Currently, we have labels for every point cloud.
-
Introducing a New Label Type:
In our current data, we do not have left/right labels for our cone positions, as this is handled independently by our pathplanning module. To accommodate this, would it be possible to introduce a new label type such as Cone_Unsorted or something similar? This would help us integrate our data without the need for left/right classification.
Best regards,
Tim
Context:
Hi there! I'm from the OTH Regensburg Formula Student Team and we are looking to contribute and utilize the dataset from your repository. Currently, I am in the process of exporting our data into the required format. However, I have encountered some confusion regarding the cone labels.
Questions:
The instructions mention using the mmdetection3d label standard, which is primarily designed for bounding boxes. Upon inspecting the generate_scene.py file, I noticed the following hardcoded values:
Should everyone use these fixed bounding box values (0.0 0.23 0.23 0.33 0.0) for all cones, or should we create individual bounding boxes based on the point cloud points associated with each cone?
Unlabeled Point Clouds:
Are unlabeled point clouds required or optional? Currently, we have labels for every point cloud.
Introducing a New Label Type:
In our current data, we do not have left/right labels for our cone positions, as this is handled independently by our pathplanning module. To accommodate this, would it be possible to introduce a new label type such as Cone_Unsorted or something similar? This would help us integrate our data without the need for left/right classification.
Best regards,
Tim