I am trying to read an image from a numpy array using PIL, by doing the following:
from PIL import Image
import numpy as np
#img is a np array with shape (3,256,256)
Image.fromarray(img)
and am getting the following error:
File "...Image.py", line 2155, in fromarray
raise TypeError("Cannot handle this data type")
I think this is because fromarray
expects the shape to be (height, width, num_channels)
however the array I have is in the shape (num_channels, height, width)
as it is stored in this was in an lmdb
database.
How can I reshape the Image so that it is compatible with Image.fromarray
?
Try
img = np.reshape(256, 256, 3)
Image.fromarray(img)
You don't need to reshape. This is what rollaxis is for:
Image.fromarray(np.rollaxis(img, 0,3))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With