python调用Matplotlib绘制分布点图


Posted in Python onOctober 18, 2019

Python调用Matplotlib代码绘制分布点,供大家参考,具体内容如下

  • 绘制点图的目的
  • Matplotlib简介
  • 代码
  • 截图

1.绘制点图的目的

我们实验室正在做关于人脸识别的项目,其中在人脸检测后,会有些误检的图片,但是其中就有很多不符合的。很明显的是从图片大小,就可以过滤掉一部分。老大交给我的工作,就是通过绘制图片width,height的分布图,来找到一个合理的阈值。

2.Matlablib简介

Matplotlib是一个Python的图形框架

下面是官网的例子

Matplotlib example

3.代码如下

import matplotlib.pyplot as plt
from numpy.random import rand
import numpy
import os
import cv2

#setting plt
plt.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.显示结果

python调用Matplotlib绘制分布点图

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
使用PYTHON接收多播数据的代码
Mar 01 Python
Django框架中的对象列表视图使用示例
Jul 21 Python
Windows上配置Emacs来开发Python及用Python扩展Emacs
Nov 20 Python
Python简单连接MongoDB数据库的方法
Mar 15 Python
python使用xlrd与xlwt对excel的读写和格式设定
Jan 21 Python
Python连接phoenix的方法示例
Sep 29 Python
Python实现自动为照片添加日期并分类的方法
Sep 30 Python
python 匹配url中是否存在IP地址的方法
Jun 04 Python
Python-while 计算100以内奇数和的方法
Jun 11 Python
pandas数据处理进阶详解
Oct 11 Python
pytorch中获取模型input/output shape实例
Dec 30 Python
PyCharm中Matplotlib绘图不能显示UI效果的问题解决
Mar 12 Python
Python 异常处理Ⅳ过程图解
Oct 18 #Python
python库matplotlib绘制坐标图
Oct 18 #Python
python实现WebSocket服务端过程解析
Oct 18 #Python
django实现支付宝支付实例讲解
Oct 17 #Python
python通过实例讲解反射机制
Oct 17 #Python
python集合常见运算案例解析
Oct 17 #Python
Pandas聚合运算和分组运算的实现示例
Oct 17 #Python
You might like
PHP 常见郁闷问题答解
2006/11/25 PHP
用PHP实现图象锐化代码
2007/06/14 PHP
shell脚本作为保证PHP脚本不挂掉的守护进程实例分享
2013/07/15 PHP
php的SimpleXML方法读写XML接口文件实例解析
2014/06/16 PHP
Yii2中关联查询简单用法示例
2016/08/10 PHP
基于php编程规范(详解)
2017/08/17 PHP
PHP7创建销毁session的实例方法
2020/02/03 PHP
javascript 面向对象编程基础 多态
2009/08/21 Javascript
js注意img图片的onerror事件的分析
2011/01/01 Javascript
js实现多选项切换导航菜单的方法
2015/02/06 Javascript
jquery简单实现图片切换效果的方法
2015/05/12 Javascript
JS Array.slice 截取数组的实现方法
2016/01/02 Javascript
JS获取IMG图片高宽的简单实例
2016/05/17 Javascript
angularjs 的数据绑定实现原理
2018/07/02 Javascript
tsconfig.json配置详解
2019/05/17 Javascript
轻松实现python搭建微信公众平台
2016/02/16 Python
scrapy爬虫实例分享
2017/12/28 Python
tensorflow 用矩阵运算替换for循环 用tf.tile而不写for的方法
2018/07/27 Python
python 利用pyttsx3文字转语音过程详解
2019/09/25 Python
python 使用pygame工具包实现贪吃蛇游戏(多彩版)
2019/10/30 Python
python ctypes库2_指定参数类型和返回类型详解
2019/11/19 Python
python解释器pycharm安装及环境变量配置教程图文详解
2020/02/26 Python
解决在keras中使用model.save()函数保存模型失败的问题
2020/05/21 Python
python实现sm2和sm4国密(国家商用密码)算法的示例
2020/09/26 Python
Jupyter Notebook添加代码自动补全功能的实现
2021/01/07 Python
pycharm 复制代码出现空格的解决方式
2021/01/15 Python
html5时钟实现代码
2010/10/22 HTML / CSS
HTML5新增form控件和表单属性实例代码详解
2019/05/15 HTML / CSS
MySQL面试题目集锦
2016/04/14 面试题
大学生活动总结模板
2014/07/02 职场文书
群众路线教育党员自我剖析材料
2014/10/06 职场文书
会议接待欢迎标语
2014/10/08 职场文书
2015年纪念“卢沟桥事变”78周年活动方案
2015/05/06 职场文书
Python 的 sum() Pythonic 的求和方法详细
2021/10/16 Python
Python+Matplotlib图像上指定坐标的位置添加文本标签与注释
2022/04/11 Python
一篇文章带你掌握SQLite3基本用法
2022/06/14 数据库