gpt4 book ai didi

python调用Matplotlib绘制分布点并且添加标签

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章python调用Matplotlib绘制分布点并且添加标签由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例为大家分享了Python调用Matplotlib绘制分布点添加标签的具体代码,供大家参考,具体内容如下 。

  • 添加标签的目的
  • 代码
  • 截图

目的 。

上文介绍了根据图像的大小作为坐标来绘制分布点图。老大又给了我一个任务,我绘制完,每次将图保存,发给她,但是图片中的点的坐标是不能显示了,所以她让我给每个点添加个label,而且label是该点的横纵坐标.

代码 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import matplotlib.pyplot as plt
from numpy.random import rand
import numpy
import os
import cv2
 
#setting plt
plt.xlim(xmax = 100 ,xmin = 0 )
plt.ylim(ymax = 100 ,ymin = 0 )
plt.xlabel( "height" )
plt.ylabel( "width" )
 
 
path_1 = r 'D:\zhangjichao\view\V7_scale_2\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\V7_scale_2\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\V7_scale_2\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\V7_scale_2\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\V7_scale_2\xujing_org_scale_2'
 
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 = 'xujing' )
for i in range ( 1 , len (x)):
   plt.text(x[i],y[i], str ((x[i],y[i])), family = 'serif' , style = 'italic' , ha = 'right' , wrap = True )
 
plt.legend(loc = 'upper center' , shadow = True , fontsize = 'x-large' )
plt.grid( True )
 
 
plt.show()

截图 。

python调用Matplotlib绘制分布点并且添加标签

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.

原文链接:https://blog.csdn.net/u013139259/article/details/52141863 。

最后此篇关于python调用Matplotlib绘制分布点并且添加标签的文章就讲到这里了,如果你想了解更多关于python调用Matplotlib绘制分布点并且添加标签的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com