免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 20961 | 回复: 10
打印 上一主题 下一主题

显示图像报Image data can not convert to float [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-06-23 23:18 |只看该作者 |倒序浏览
有如下代码:
from PIL import Image
from pylab import *
im = array(Image.open('./empire.jpg'))
imshow(im)

执行这段代码,会报如下错误:
Traceback (most recent call last):
  File "showIm.py", line 12, in <module>
    imshow(im)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/pyplot.py", line 2377, in imshow
    ret = ax.imshow(X, cmap, norm, aspect, interpolation, alpha, vmin, vmax, origin, extent, shape, filternorm, filterrad, imlim, resample, url, **kwargs)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/axes.py", line 6796, in imshow
    im.set_data(X)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/image.py", line 407, in set_data
    raise TypeError("Image data can not convert to float")
TypeError: Image data can not convert to float
ECSC-APdeMacBook-Pro:myPy ecsc$ cat showIm.py

请问高手,为什么会有这样的错误?谢谢!

论坛徽章:
0
2 [报告]
发表于 2014-06-24 08:44 |只看该作者
怀疑是:
           (Image.open('./empire.jpg') 返回的是image类型的数据
          而array()里面要求的是string类型的

论坛徽章:
0
3 [报告]
发表于 2014-06-24 10:16 |只看该作者
回复 2# xmchenb
那如何修改呢?


   

论坛徽章:
4
白羊座
日期:2013-11-05 10:26:09冥斗士
日期:2015-11-17 14:19:55白银圣斗士
日期:2015-11-17 15:13:0815-16赛季CBA联赛之新疆
日期:2016-04-01 09:10:58
4 [报告]
发表于 2014-06-24 10:22 |只看该作者
回复 3# flyinsky518
直接:imshow(Image.open('empire.jpg'))

论坛徽章:
0
5 [报告]
发表于 2014-06-24 10:43 |只看该作者
回复 4# icymirror

仍然报错,具体的错误信息如下:
Traceback (most recent call last):
  File "showIm.py", line 5, in <module>
    imshow(im)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/pyplot.py", line 2377, in imshow
    ret = ax.imshow(X, cmap, norm, aspect, interpolation, alpha, vmin, vmax, origin, extent, shape, filternorm, filterrad, imlim, resample, url, **kwargs)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/axes.py", line 6796, in imshow
    im.set_data(X)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/image.py", line 402, in set_data
    self._A = pil_to_array(A)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/image.py", line 1260, in pil_to_array
    x = toarray(im)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/matplotlib/image.py", line 1245, in toarray
    x_str = im.tostring('raw',im.mode,0,-1)
  File "/Library/Python/2.7/site-packages/PIL/Image.py", line 532, in tostring
    self.load()
  File "/Library/Python/2.7/site-packages/PIL/ImageFile.py", line 189, in load
    d = Image._getdecoder(self.mode, d, a, self.decoderconfig)
  File "/Library/Python/2.7/site-packages/PIL/Image.py", line 385, in _getdecoder
    raise IOError("decoder %s not available" % decoder_name)
IOError: decoder jpeg not available

   

论坛徽章:
4
白羊座
日期:2013-11-05 10:26:09冥斗士
日期:2015-11-17 14:19:55白银圣斗士
日期:2015-11-17 15:13:0815-16赛季CBA联赛之新疆
日期:2016-04-01 09:10:58
6 [报告]
发表于 2014-06-24 12:07 |只看该作者
回复 5# flyinsky518
你能查看下你的matplotlib的版本嘛?
import matplotlib
matplotlib.__version__ (我这边的是1.3.1,工作没有问题。)

论坛徽章:
0
7 [报告]
发表于 2014-06-24 12:33 |只看该作者
我这边是1.1.1,好像是版本的问题。我再试一下。谢谢。

论坛徽章:
0
8 [报告]
发表于 2014-06-24 13:34 |只看该作者
我用的是OSX操作系统10.9,找不到与之相对应的包。(

论坛徽章:
0
9 [报告]
发表于 2014-06-24 13:34 |只看该作者
我用的是OSX操作系统10.9,找不到与之相对应的包。(

论坛徽章:
4
白羊座
日期:2013-11-05 10:26:09冥斗士
日期:2015-11-17 14:19:55白银圣斗士
日期:2015-11-17 15:13:0815-16赛季CBA联赛之新疆
日期:2016-04-01 09:10:58
10 [报告]
发表于 2014-06-24 14:24 |只看该作者
回复 9# flyinsky518
那你可能需要自己从源代码开始编译安装了。
这里有说明: http://matplotlib.org/users/installing.html
(注:pylab实际上是 matplotlib.pylab)
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP