赞
踩
当我们把python和opencv配置好以后我们就可以利用python对图片进行一系列的处理了,看到很多同学都会在pcv上遇到问题,又要去GitHub上面下载pcv,很庆幸自己当时下了anaconda,避免了很多库缺失的问题。
源代码
from PIL import Image from pylab import * # 添加中文字体支持 from matplotlib.font_manager import FontProperties font = FontProperties(fname=r"c:\windows\fonts\SimSun.ttc", size=14) im = array(Image.open('hjl.jpg').convert('L')) # 打开图像,并转成灰度图像 figure() subplot(121) gray() contour(im, origin='image') axis('equal') axis('off') title(u'图像轮廓', fontproperties=font) subplot(122) hist(im.flatten(), 128) title(u'图像直方图', fontproperties=font) plt.xlim([0,260]) plt.ylim([0,11000]) show()
显示结果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。