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
draw_data contains the line: img = PIL.Image.fromarray(img). If the image is grayscale and in the format (h,w,1) (which is what icevision expects` it fails with the error:
in #807 i tried to squeeze the images into two channels - it works, but now the error has moved somewhere else, it complains because we're trying to draw a colored bbox into a grayscale image
🐛 Bug
draw_data
contains the line:img = PIL.Image.fromarray(img)
. If the image is grayscale and in the format(h,w,1)
(which is what icevision expects` it fails with the error:More info:
https://stackoverflow.com/questions/63367136/pil-typeerror-cannot-handle-this-data-type-1-1-1-u1
The text was updated successfully, but these errors were encountered: