0
我觀察到PIL和scikit圖像這個奇怪的問題。當我做在滑雪圖像中調整圖像大小後,PIL奇怪的錯誤
img=io.imread(imgLoc)
pilImg=Image.fromarray(img)
它運行完美。當我嘗試使用skimage的重新調整方法是這樣來調整圖像大小:
img=rescale(io.imread(imgLoc),0.5)
pilImg=Image.fromarray(img)
它說
File "/home/abc/activepython/lib/python2.7/site-packages/PIL/Image.py", line 2137, in fromarray
raise TypeError("Cannot handle this data type")
TypeError: Cannot handle this data type
從skimage.io.imread和skimage.transform.rescale兩者的回報numpy.ndarray
我人工檢查以及的文檔。任何人都可以對此有所瞭解嗎?