-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
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
Is there a way of passing a group_id back into CVAT after automatic annotation? #3676
Comments
Hi, In the file
As you can see it sets group as None always. That is because current detectors does not support groups. |
@MPiotr , if you can help and prepare a PR, it will be awesome |
Hi, just a reminder that this hasn't been fixed yet. |
@zwfcrazy , could you please send us a PR? We really like when community contributes into the project and help us to improve it. |
@nmanovic It seems that making the fix mentioned by @bsekachev is not enough, I am trying to figure out the cause. |
Found the cause. When implementing an auto-annotation function, be aware group_id should start from 1 instead of 0. This is because group_id=0 is equivalent to no group. |
this fix only works for detector type auto-annotator with anno type not equal to 'tag'.
fix auto-annotation group_id issue (#3676)
Hi,
I am trying to run OpenPose as an automatic annotation tool. Here is an example of a JSON returned by model
Current Behaviour
The points are created in
cvat_ui
, however thegroup_id
affects nothing: all the points has the same groupExpected Behaviour
I would expect that point groups in ui are correspond to
group_id
filed in JSON.Your Environment
The text was updated successfully, but these errors were encountered: