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
<snip>
File "/usr/local/lib/python3.8/dist-packages/datumaro/components/converter.py", line 32, in convert
return converter.apply()
File "/usr/local/lib/python3.8/dist-packages/datumaro/plugins/voc_format/converter.py", line 117, in apply
self.save_subsets()
File "/usr/local/lib/python3.8/dist-packages/datumaro/plugins/voc_format/converter.py", line 205, in save_subsets
h, w = item.image.size
TypeError: cannot unpack non-iterable NoneType object
the fix is trivial: just add and item.image.has_data to the if on line 204 of converter.py
Hello,
i'm trying to export cvat xml to pascalvoc.
i'm letting cvat export the annotations to a gitrepo then i can do the following.
datum convert --overwrite -if cvat -i . -f voc_detection -o foo
eg with the very trivial annotations in attach.
this gives me the following error
the fix is trivial: just add and item.image.has_data to the if on line 204 of converter.py
the coco format suffers from the same problem.
The text was updated successfully, but these errors were encountered: