使用Python实现图像标记点的坐标输出功能
作者:松子茶 时间:2022-10-31 16:15:06
Sometimes we have need to interact with an application,for example bymarking points in an image,or you need to annotation some training data.PyLab comes with a simple functionginput() the let's you do just that .Here's a short example.
from PIL import Image
from pylab import *
im = array(Image.open('test.jpg'))
imshow(im)
print 'Please click 3 points'
x =ginput(3)
print 'you clicked:',x
show()
This plots an image and waits for the user to click three times in the image region of the figures window.The coordinates[x,y] of the clicks are saved in a list x.
总结
以上所述是小编给大家介绍的使用Python实现图像标记点的坐标输出功能 ,网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
来源:https://blog.csdn.net/songzitea/article/details/17304925
标签:python,标记,坐标
0
投稿
猜你喜欢
解决python有时候import不了当前的包问题
2022-11-28 18:52:21
python中列表的切片与修改知识点总结
2023-08-29 00:49:08
vue项目配置element-ui容易遇到的坑及解决
2024-04-29 13:10:25
pytest官方文档解读fixtures调用fixtures及fixture复用性
2021-08-14 23:01:02
mysql提示Changed limits: max_open_files: 2048 max_connections: 1910 table_cache: 64的解决
2024-01-23 11:01:32
Django商城项目注册功能的实现
2022-01-19 05:22:36
python opencv进行图像拼接
2022-09-10 16:13:01
使用pycharm将自己项目代码上传github(小白教程)
2022-05-02 20:37:06
SQL Server查找表名或列名中包含空格的表和列实例代码
2024-01-17 03:15:33
Python之pymysql的使用小结
2024-01-23 09:43:20
初学JavaScript第二章
2024-04-17 10:11:30
MySQL中的联合索引学习教程
2024-01-21 23:49:34
ASP使用fso遍历文件及文件夹列出文件名
2008-10-27 19:32:00
Python3一行代码实现图片文字识别的示例
2021-11-22 06:45:51
python对数组进行反转的方法
2023-08-12 13:38:54
快速解决SQL server 2005孤立用户问题
2009-01-04 14:02:00
golang之JWT实现的示例代码
2024-01-30 03:35:30
浅谈django2.0 ForeignKey参数的变化
2022-03-26 10:11:30
Python+drawpad实现CPU监控小程序
2022-05-30 19:54:38
JavaScript解决Joseph问题
2008-06-21 17:11:00