码迷,mamicode.com
首页 > 编程语言 > 详细

Python开源库的bug

时间:2014-08-29 10:33:57      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:strong   ar   for   代码   on   c   ef   python   as   

scipy

在misc的pilutil.py中def fromimage(im, flatten=0)函数中,

# workaround for crash in PIL, see #1613.
im.convert(‘L‘)

上面是之前的代码,当图片模式是二值模式时,此处会出错,因为im.convert(‘L‘)对原图片没有任何变化,改为

im = im.convert(‘L‘)

Python开源库的bug

标签:strong   ar   for   代码   on   c   ef   python   as   

原文地址:http://www.cnblogs.com/summerwinter/p/3944191.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!