关于python下cv.waitKey无响应的原因及解决方法


Posted in Python onJanuary 10, 2019

按下键的时候,焦点要落在窗口上,不能落在cmd窗口上。

另外,一般在imshow()后要使用waitKey(),给图像绘制留下时间,不然窗口会出现无响应情况,并且图像无法显示出来。

int waitKey(int delay=0) 
- 延时delay = 0 函数则延时无限长,必须有键按下才继续执行。 
- 延时delay > 0 函数返回值为按下的键的ASCII码值,超时则返回-1。
OpenCV: waitKey
waitKey 
Waits for a pressed key.
C++: int waitKey(int delay=0) 
Python: cv2.waitKey([delay]) → retval

Parameters: delay ? Delay in milliseconds. 0 is the special value that means “forever”.
The function waitKey waits for a key event infinitely (when \texttt{delay}\leq 0 ) or for delay milliseconds, when it is positive. Since the OS has a minimum time between switching threads, the function will not wait exactly delay ms, it will wait at least delay ms, depending on what else is running on your computer at that time. It returns the code of the pressed key or -1 if no key was pressed before the specified time had elapsed.
Note 
This function is the only method in HighGUI that can fetch and handle events, so it needs to be called periodically for normal event processing unless HighGUI is used within an environment that takes care of event processing.
Note 
The function only works if there is at least one HighGUI window created and the window is active. If there are several HighGUI windows, any of them can be active.

也就是说必须在有窗口显示的情况下,waitKey才有作用,否则无效。

比如调用cv.waitKey(0),如果此时没有活动的窗口,该函数立刻返回-1

以上这篇关于python下cv.waitKey无响应的原因及解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Pycharm编辑器技巧之自动导入模块详解
Jul 18 Python
Python读写/追加excel文件Demo分享
May 03 Python
python爬取网页内容转换为PDF文件
Jul 28 Python
python列表list保留顺序去重的实例
Dec 14 Python
Python绘制并保存指定大小图像的方法
Jan 10 Python
python实现数据分析与建模
Jul 11 Python
python pip源配置,pip配置文件存放位置的方法
Jul 12 Python
Python注释、分支结构、循环结构、伪“选择结构”用法实例分析
Jan 09 Python
自定义Django Form中choicefield下拉菜单选取数据库内容实例
Mar 13 Python
Python实现从N个数中找到最大的K个数
Apr 02 Python
如何完美的建立一个python项目
Oct 09 Python
python各种excel写入方式的速度对比
Nov 10 Python
Python设计模式之迭代器模式原理与用法实例分析
Jan 10 #Python
Python设计模式之桥接模式原理与用法实例分析
Jan 10 #Python
Python基础教程之异常详解
Jan 10 #Python
Python+OpenCV感兴趣区域ROI提取方法
Jan 10 #Python
python+opencv 读取文件夹下的所有图像并批量保存ROI的方法
Jan 10 #Python
pandas ix &iloc &loc的区别
Jan 10 #Python
python 移动图片到另外一个文件夹的实例
Jan 10 #Python
You might like
很好用的PHP数据库类
2009/05/27 PHP
PHP中替换键名的简易方法示例详解
2014/01/07 PHP
分享下页面关键字抓取www.icbase.com站点代码(带asp.net参数的)
2014/01/30 PHP
php根据日期判断星座的函数分享
2014/02/13 PHP
php实现文件下载实例分享
2014/06/02 PHP
php把数组值转换成键的方法
2015/07/13 PHP
PHP微信支付开发实例
2016/06/22 PHP
PHP crypt()函数的用法讲解
2019/02/15 PHP
解决php用mysql方式连接数据库出现Deprecated报错问题
2019/12/25 PHP
基于jquery的图片幻灯展示源码
2012/07/15 Javascript
js数组依据下标删除元素
2015/04/14 Javascript
JavaScript之AOP编程实例
2015/07/17 Javascript
angularjs学习笔记之三大模块(modal,controller,view)
2015/09/26 Javascript
jQuery遮罩层效果实例分析
2016/01/14 Javascript
jQuery查看选中对象HTML代码的方法
2016/06/17 Javascript
jQuery 全选 全不选 事件绑定的实现代码
2017/01/23 Javascript
解决element ui select下拉框不回显数据问题的解决
2019/02/20 Javascript
vue 对象添加或删除成员时无法实时更新的解决方法
2019/05/01 Javascript
优雅的处理vue项目异常实战记录
2019/06/05 Javascript
基于vue hash模式微信分享#号的解决
2020/09/07 Javascript
[39:46]完美世界DOTA2联赛PWL S2 LBZS vs Rebirth 第二场 11.25
2020/11/25 DOTA
在Django框架中编写Contact表单的教程
2015/07/17 Python
使用python实现rsa算法代码
2016/02/17 Python
Python 常用string函数详解
2016/05/30 Python
python中reduce()函数的使用方法示例
2017/09/29 Python
Python 和 JS 有哪些相同之处
2017/11/23 Python
django上传图片并生成缩略图方法示例
2017/12/11 Python
python使用多进程的实例详解
2018/09/19 Python
Python增强赋值和共享引用注意事项小结
2019/05/28 Python
python f-string式格式化听语音流程讲解
2019/06/18 Python
python 根据字典的键值进行排序的方法
2019/07/24 Python
用css3实现转换过渡和动画效果
2020/03/13 HTML / CSS
岗位职责风险点
2014/03/12 职场文书
安全教育第一课观后感
2015/06/17 职场文书
SQL Server数据库基本概念、组成、常用对象与约束
2022/03/20 SQL Server
Win10此设备不支持接收Miracast无法投影的解决方法
2022/07/07 数码科技