91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python調用Matplotlib繪制分布點圖

發布時間:2020-09-12 08:25:33 來源:腳本之家 閱讀:192 作者:張騫暉2 欄目:開發技術

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繪制分布點圖

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

焦作市| 班戈县| 思茅市| 独山县| 扶风县| 浦东新区| 铜川市| 新津县| 志丹县| 旬邑县| 惠来县| 大兴区| 儋州市| 内丘县| 班戈县| 唐河县| 岳普湖县| 日照市| 怀仁县| 信丰县| 于田县| 友谊县| 天门市| 浏阳市| 淮滨县| 眉山市| 汉沽区| 嘉定区| 运城市| 和田县| 长寿区| 龙泉市| 讷河市| 盖州市| 紫阳县| 雷州市| 颍上县| 漳平市| 苍南县| 娱乐| 安仁县|