fix auto-annotation group_id issue (#3676)

this fix only works for detector type auto-annotator with anno type not equal to 'tag'.
main
Wenfei Zhu 4 years ago committed by GitHub
parent ba4175bf5b
commit e6a9c1fcdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -473,7 +473,7 @@ class LambdaJob:
"occluded": False,
"points": anno["points"],
"z_order": 0,
"group": None,
"group": anno["group_id"] if "group_id" in anno else None,
"attributes": attrs,
"source": "auto"
})

Loading…
Cancel
Save