使用Python实现图像标记点的坐标输出功能


Posted in Python onAugust 14, 2019

Sometimes we have need to interact  with an application,for example by marking points in an image,or you need to annotation some training data.PyLab comes with a simple function ginput() 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实现图像标记点的坐标输出功能

总结

以上所述是小编给大家介绍的使用Python实现图像标记点的坐标输出功能 ,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

Python 相关文章推荐
python去掉行尾的换行符方法
Jan 04 Python
详解python并发获取snmp信息及性能测试
Mar 27 Python
Python调用微信公众平台接口操作示例
Jul 08 Python
对python字典元素的添加与修改方法详解
Jul 06 Python
python使用adbapi实现MySQL数据库的异步存储
Mar 19 Python
python使用turtle绘制国际象棋棋盘
May 23 Python
使用Python为中秋节绘制一块美味的月饼
Sep 11 Python
Django REST framework 单元测试实例解析
Nov 07 Python
使用Bazel编译TensorBoard教程
Feb 15 Python
基于python实现计算且附带进度条代码实例
Mar 31 Python
python模块如何查看
Jun 16 Python
如何用python免费看美剧
Aug 11 Python
python2爬取百度贴吧指定关键字和图片代码实例
Aug 14 #Python
python提取照片坐标信息的实例代码
Aug 14 #Python
python2使用bs4爬取腾讯社招过程解析
Aug 14 #Python
详解用python计算阶乘的几种方法
Aug 14 #Python
Python使用scrapy爬取阳光热线问政平台过程解析
Aug 14 #Python
用Python抢火车票的简单小程序实现解析
Aug 14 #Python
Python定时任务随机时间执行的实现方法
Aug 14 #Python
You might like
新浪新闻小偷
2006/10/09 PHP
PHP版自动生成文章摘要
2008/07/23 PHP
解析php中heredoc的使用方法
2013/06/17 PHP
详解EventDispatcher事件分发组件
2016/12/25 PHP
PHP字符串逆序排列实现方法小结【strrev函数,二分法,循环法,递归法】
2017/01/13 PHP
PHP错误处理函数register_shutdown_function使用示例
2017/07/03 PHP
Laravle eloquent 多对多模型关联实例详解
2017/11/22 PHP
PHP创建XML接口示例
2019/07/04 PHP
基于jQuery捕获超链接事件进行局部刷新代码
2012/05/10 Javascript
JS事件Event元素(兼容IE,Firefox,Chorme)
2012/11/01 Javascript
Node.js抓取中文网页乱码问题和解决方法
2015/02/10 Javascript
jQuery+html5实现div弹出层并遮罩背景
2015/04/15 Javascript
EasyUI闪屏EasyUI页面加载提示(原理+代码+效果图)
2016/02/21 Javascript
js实现带三角符的手风琴效果
2017/03/01 Javascript
在js中做数字字符串补0(js补零)
2017/03/25 Javascript
微信小程序开发之数据存储 参数传递 数据缓存
2017/04/13 Javascript
基于JavaScript实现的希尔排序算法分析
2017/04/14 Javascript
vue 里面使用axios 和封装的示例代码
2017/09/01 Javascript
在小程序中使用canvas的方法示例
2018/09/17 Javascript
layui关闭弹窗后刷新主页面和当前更改项的例子
2019/09/06 Javascript
jQuery实现form表单基于ajax无刷新提交方法实例代码
2019/11/04 jQuery
Python生成验证码实例
2014/08/21 Python
Python  pip安装lxml出错的问题解决办法
2017/02/10 Python
Windows下安装python MySQLdb遇到的问题及解决方法
2017/03/16 Python
Python学习笔记之解析json的方法分析
2017/04/21 Python
Django组件之cookie与session的使用方法
2019/01/10 Python
Python 中Django验证码功能的实现代码
2019/06/20 Python
python打包exe开机自动启动的实例(windows)
2019/06/28 Python
Ibatis的核心配置文件都有什么
2014/09/08 面试题
家居装修公司创业计划书范文
2014/03/20 职场文书
2015年重阳节活动主持词
2015/07/30 职场文书
2019已经过半,你知道年中工作总结该怎么写吗?
2019/07/03 职场文书
golang 比较浮点数的大小方式
2021/05/02 Golang
Go语言实现Snowflake雪花算法
2021/06/08 Golang
springboot+zookeeper实现分布式锁
2022/03/21 Java/Android
Java中API的使用方法详情
2022/04/06 Java/Android