You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In moving to a CARLA MOT dataset in v4, we would like to have a standard format for the labels.
In particular, we are looking at an extended COCO format that looks like this:
{
"image_id": int,
"category_id": int,
"bbox": [x, y, width, height], # not sure if it should be normalized for standard coco
"score": float, # only used for detections, not ground truth
# The following are extended fields:
"object_id": int,
"visibility": float, # 0 to 1
"video_id": int,
}
In moving to a CARLA MOT dataset in v4, we would like to have a standard format for the labels.
In particular, we are looking at an extended COCO format that looks like this:
This is shown in more detail here (without the
video_id
field): https://github.com/twosixlabs/armory/blob/develop/armory/data/adversarial_datasets.py#L1013-L1024The
objects
field in the builder should be a Sequence of these dicts.This requires a number of changes:
coco_format
from carla-mot scenario configs (shows up 3 times)coco_format
and code surrounding itThe text was updated successfully, but these errors were encountered: