时间:2021-05-22
Python调用Matplotlib代码绘制分布点,供大家参考,具体内容如下
1.绘制点图的目的
我们实验室正在做关于人脸识别的项目,其中在人脸检测后,会有些误检的图片,但是其中就有很多不符合的。很明显的是从图片大小,就可以过滤掉一部分。老大交给我的工作,就是通过绘制图片width,height的分布图,来找到一个合理的阈值。
2.Matlablib简介
Matplotlib是一个Python的图形框架
下面是官网的例子
Matplotlib example
3.代码如下
import matplotlib.pyplot as pltfrom numpy.random import randimport numpyimport osimport cv2#setting pltplt.xlim(xmax=500,xmin=0)plt.ylim(ymax=500,ymin=0)plt.xlabel("height")plt.ylabel("width")path_1 = r'D:\zhangjichao\view\path_1'x = []y = []files = os.listdir(path_1)for f in files: img = cv2.imread(path_1 + '\\' + f) x.append(img.shape[0]) y.append(img.shape[1])plt.plot(x,y,'ro',color='red',label='path_1')path_2 = r'D:\zhangjichao\view\path_2'x = []y = []files = os.listdir(path_2)for f in files: img = cv2.imread(path_2 + '\\' + f) x.append(img.shape[0]) y.append(img.shape[1])plt.plot(x,y,'ro',color='red',label='path_2')path_3 = r'D:\zhangjichao\view\path_3'x = []y = []files = os.listdir(path_3)for f in files: img = cv2.imread(path_3 + '\\' + f) x.append(img.shape[0]) y.append(img.shape[1])plt.plot(x,y,'ro',color='red',label='path_3')path_4 = r'D:\zhangjichao\view\path_4'x = []y = []files = os.listdir(path_4)for f in files: img = cv2.imread(path_4 + '\\' + f) x.append(img.shape[0]) y.append(img.shape[1])plt.plot(x,y,'ro',color='red',label='path_4')yujing = r'D:\zhangjichao\view\xujing'x = []y = []files = os.listdir(yujing)for f in files: img = cv2.imread(yujing + '\\' + f) x.append(img.shape[0]) y.append(img.shape[1])plt.plot(x,y,'ro',color='green' , label='yujing')#图例plt.legend(loc='upper center', shadow=True, fontsize='x-large')plt.grid(True)#显示plt.show()4.显示结果
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例为大家分享了Python调用Matplotlib绘制分布点添加标签的具体代码,供大家参考,具体内容如下添加标签的目的代码截图目的上文介绍了根据图像的大小
使用Python绘制正态分布曲线,借助matplotlib绘图工具;#-*-coding:utf-8-*-"""python绘制标准正态分布曲线"""#====
前言matplotlib是基于Python语言的开源项目,旨在为Python提供一个数据绘图包。在使用Pythonmatplotlib库绘制数据图时,需要使用图
在matplotlib下,一个Figure对象可以包含多个子图(Axes),可以使用subplot()快速绘制,其调用形式如下:subplot(numRows,
在matplotlib下,一个Figure对象可以包含多个子图(Axes),可以使用subplot()快速绘制,其调用形式如下:subplot(numRows,