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
In the code, every ann['segmentation'], both for the instance annotations and the semantic annotations, is read through the functions in pycocotools.mask:
from pycocotools import mask as COCOmask
but these functions work only with the RLE format, so my guess is that the code fails for segments saved as polygons, instead of RLE.
Am I correct?
The text was updated successfully, but these errors were encountered:
In the code, every
ann['segmentation']
, both for the instance annotations and the semantic annotations, is read through the functions in pycocotools.mask:from pycocotools import mask as COCOmask
but these functions work only with the RLE format, so my guess is that the code fails for segments saved as polygons, instead of RLE.
Am I correct?
The text was updated successfully, but these errors were encountered: