We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While exporting to COCO the "extra" entry of each annotation is built (
darwin-py/darwin/exporter/formats/coco.py
Line 308 in f29c58a
However, the COCO importer completely ignores this "extra" category in the annotations.
The text was updated successfully, but these errors were encountered:
Changing the importer coco.py at line 138 like this:
if len(segmentation) == 0 and len(annotation["bbox"]) == 4: x, y, w, h = map(int, annotation["bbox"]) track_id = int(annotation["extra"]["instance_id"]) # print(dt.make_instance_id(track_id), track_id) return dt.make_bounding_box(category["name"], x, y, w, h, subs=[dt.make_instance_id(track_id)])
doesn't solve the issue, any ideas why?
Sorry, something went wrong.
I made it work, just created a PR: #729
No branches or pull requests
While exporting to COCO the "extra" entry of each annotation is built (
darwin-py/darwin/exporter/formats/coco.py
Line 308 in f29c58a
However, the COCO importer completely ignores this "extra" category in the annotations.
The text was updated successfully, but these errors were encountered: