Hi @octo,
The main purpose of classes in the dataset/ground truth is unique identifiers for each sequence, for different objects.
The name does tell about the object type i.e. Airplane, Helicopter, Bird, etc, but the class name don’t have an impact on your submissions.
But here is the full list and distribution of airborne objects:
Snippet to generate yourself
all_object_names = {}
for flight_id in dataset.get_flight_ids():
flight = dataset.get_flight(flight_id)
for obj in flight.detected_objects:
if obj not in all_object_names:
all_object_names[obj] = 0
all_object_names[obj] += 1
Clipboard friendly list:
['Airborne1', 'Airborne10', 'Airborne11', 'Airborne12', 'Airborne14', 'Airborne15', 'Airborne16', 'Airborne17', 'Airborne18', 'Airborne2', 'Airborne3', 'Airborne4', 'Airborne5', 'Airborne6', 'Airborne7', 'Airborne9', 'Airplane1', 'Airplane10', 'Airplane2', 'Airplane3', 'Airplane4', 'Airplane5', 'Airplane6', 'Airplane7', 'Airplane8', 'Bird1', 'Bird10', 'Bird15', 'Bird2', 'Bird23', 'Bird3', 'Bird4', 'Bird5', 'Bird6', 'Bird7', 'Bird8', 'Bird9', 'Drone1', 'Flock1', 'Flock2', 'Flock3', 'Helicopter1', 'Helicopter2', 'Helicopter3', 'Helicopter4']
Regarding the range_distance_m
, as shared in challenge’s overview:
If the label corresponds to a planned airborne object, its distance information may be available. Note that distance data is not available for other non-planned airborne objects in the scene.
i.e. those nan
ones are unplanned objects, hence distance information isn’t available.
Let us know in case you have any follow up questions.