txt标签中按x,y格式存放点标签,如:
需要将这些点可视化在对应的图片上。
import matplotlib.pyplot as plt
# 读取包含点坐标的 txt 文件
file_path = 'E:\projects\json\CDY_2015-berries.txt'
with open(file_path, 'r') as file:
data = file.readlines()
# 将文本数据转换为列表
data = [d.strip().split('\t') for d in data]
x = [int(d[0]) for d in data]
y = [int(d[1]) for d in data]
# 加载图片
img_path = 'E:\projects\json\CDY_2015.jpg'
img = plt.imread(img_path)
# 可视化显示
plt.figure()
plt.imshow(img)
plt.scatter(x, y, label='Points', color='r', s=5, marker='o')
plt.xlabel('X')
plt.ylabel('Y')
plt.title('Visualization of Points on Image')
plt.legend()
plt.show()