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
This image is a rgba image with has four channels [R,G,B, A], in which
Alpha channel is the fourth one. It controls the transparency of the rgb
channel. You can convert it to 3 channels images or change our inference.py
code line 35 as: im = io.imread(im_path)[:,:,0:3]
So I run inference.py using this image : https://drive.google.com/file/d/1YoyuXLSGhu8plA7OYMB7xrMyqV26W2oz/view?usp=sharing
but I got this runtime error: RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-singleton dimension 1
The text was updated successfully, but these errors were encountered: