Python 图像显示
Posted xiaobai_xiaokele
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 图像显示相关的知识,希望对你有一定的参考价值。
做图像处理的,肯定首先想的就是open一张图,然后show出来,但是刚刚配置好的Python却显示不出来图,PIL库已经安装好,网上搜了下,发现都是win7出现问题的,找到了解决方案,就是一句话的修改
http://www.thecodingforums.com/threads/python-pil-and-vista-windows-7-show-not-working.707158/
Edit C:\\Python26\\lib\\site-packages\\PIL\\ImageShow.py, and around line 99, replace with the following line:
return "start /wait %s && PING 127.0.0.1 -n 5 > NUL && del /f %s" % (file, file)
具体为什么,我就没有看了
以上是关于Python 图像显示的主要内容,如果未能解决你的问题,请参考以下文章