使用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 相关文章推荐
pymongo给mongodb创建索引的简单实现方法
May 06 Python
浅析Python中的join()方法的使用
May 19 Python
查看Django和flask版本的方法
May 14 Python
django允许外部访问的实例讲解
May 14 Python
python+selenium打印当前页面的titl和url方法
Jun 22 Python
Python I/O与进程的详细讲解
Mar 08 Python
python mac下安装虚拟环境的图文教程
Apr 12 Python
Python读取stdin方法实例
May 24 Python
解决python 读取excel时 日期变成数字并加.0的问题
Oct 08 Python
python pymysql库的常用操作
Oct 16 Python
Python Pycharm虚拟下百度飞浆PaddleX安装报错问题及处理方法(亲测100%有效)
May 24 Python
Python几种酷炫的进度条的方式
Apr 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
基于mysql的bbs设计(四)
2006/10/09 PHP
PHP容易忘记的知识点分享
2013/04/30 PHP
php之CodeIgniter学习笔记
2013/06/17 PHP
php生成数字字母的验证码图片
2015/07/14 PHP
PHP消息队列用法实例分析
2016/02/12 PHP
PHP设计模式之工厂模式定义与用法详解
2018/04/03 PHP
Javascript实现的分页函数
2007/02/07 Javascript
JS实现点击链接取消跳转效果的方法
2014/01/24 Javascript
自写的jQuery异步加载数据添加事件
2014/05/15 Javascript
深入理解Javascript中this的作用域
2014/08/12 Javascript
Angular动态添加、删除输入框并计算值实例代码
2017/03/29 Javascript
微信小程序实现滑动删除效果
2017/05/19 Javascript
JavaScript方法_动力节点Java学院整理
2017/06/28 Javascript
js与jQuery实现获取table中的数据并拼成json字符串操作示例
2018/07/12 jQuery
JavaScript中的函数式编程详解
2020/08/22 Javascript
vue v-model的用法解析
2020/10/19 Javascript
python在windows下实现备份程序实例
2014/07/04 Python
新手常见6种的python报错及解决方法
2018/03/09 Python
Python爬虫实现(伪)球迷速成
2018/06/10 Python
pandas进行数据的交集与并集方式的数据合并方法
2018/06/27 Python
django项目搭建与Session使用详解
2018/10/10 Python
啥是佩奇?使用Python自动绘画小猪佩奇的代码实例
2019/02/20 Python
Django之无名分组和有名分组的实现
2019/04/16 Python
Python目录和文件处理总结详解
2019/09/02 Python
python爬虫开发之使用python爬虫库requests,urllib与今日头条搜索功能爬取搜索内容实例
2020/03/10 Python
有关pycharm登录github时有的时候会报错connection reset的问题
2020/09/15 Python
印度化妆品购物网站:Nykaa
2018/07/22 全球购物
Made in Design英国:设计家具、照明、家庭装饰和花园家具
2019/09/24 全球购物
奥地利时尚、美容、玩具和家居之家:Kastner & Öhler
2020/04/26 全球购物
40岁生日感言
2014/02/15 职场文书
学习交流会主持词
2014/04/01 职场文书
毕业寄语大全
2014/04/09 职场文书
停电通知范文
2015/04/16 职场文书
法定代表人资格证明书
2015/06/18 职场文书
2015年六年级班主任工作总结
2015/10/15 职场文书
还在手动盖楼抽奖?教你用Python实现自动评论盖楼抽奖(一)
2021/06/07 Python