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
Describe the solution you'd like
It would be very useful if we could export keypoint annotations using the COCO keypoints format. At the moment, only segmentation and detection of COCO are supported afaik.
The additional "visibility" flag could be configured during setup of the project:
define the keypoint set(s)
define visibility behavior: E.g. consider missing entries as not-labeled (flag=0) and add a tick box to indicate that labeled instances are invisible (flag=1) with default flag=2 for each labeled keypoint.
The text was updated successfully, but these errors were encountered:
@makseq in COCO, keypoints have, next to their u,v coordinates, an additional visibility flag that can have 3 values:
2: keypoint visible (the default I would say)
1: keypoint is labeled but occluded in the image
0: keypoint is not in the image, e.g. the human arm is not in the field of view. In this case x,y should be 0.0.
If you would want to export keypoints to the COCO format we need:
a way to define the object categories and their respective keypoints in the labeling configuration.
for every instance (defined by a bounding box or segmentation mask), a way to label all the keypoints belonging to that category including their visibility flag using an attribute for each keypoint (possibly through the meta information)
This way one can easily add the keypoints field to each annotation in the coco export.
Describe the solution you'd like
It would be very useful if we could export keypoint annotations using the COCO keypoints format. At the moment, only segmentation and detection of COCO are supported afaik.
The additional "visibility" flag could be configured during setup of the project:
The text was updated successfully, but these errors were encountered: