Skip to content

Clarification on Cone Label Structure and Introduction of New Label Type #23

@Lazystinkdog

Description

@Lazystinkdog

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:

  1. 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?

  1. Unlabeled Point Clouds:
    Are unlabeled point clouds required or optional? Currently, we have labels for every point cloud.

  2. 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions