关于python下cv.waitKey无响应的原因及解决方法
按下键的时候,焦点要落在窗口上,不能落在cmd窗口上。
另外,一般在imshow()后要使用waitKey(),给图像绘制留下时间,不然窗口会出现无响应情况,并且图像无法显示出来。
intwaitKey(intdelay=0) -延时delay=0函数则延时无限长,必须有键按下才继续执行。 -延时delay>0函数返回值为按下的键的ASCII码值,超时则返回-1。 OpenCV:waitKey waitKey Waitsforapressedkey. C++:intwaitKey(intdelay=0) Python:cv2.waitKey([delay])→retval Parameters:delay–Delayinmilliseconds.0isthespecialvaluethatmeans“forever”. ThefunctionwaitKeywaitsforakeyeventinfinitely(when\texttt{delay}\leq0)orfordelaymilliseconds,whenitispositive.SincetheOShasaminimumtimebetweenswitchingthreads,thefunctionwillnotwaitexactlydelayms,itwillwaitatleastdelayms,dependingonwhatelseisrunningonyourcomputeratthattime.Itreturnsthecodeofthepressedkeyor-1ifnokeywaspressedbeforethespecifiedtimehadelapsed. Note ThisfunctionistheonlymethodinHighGUIthatcanfetchandhandleevents,soitneedstobecalledperiodicallyfornormaleventprocessingunlessHighGUIisusedwithinanenvironmentthattakescareofeventprocessing. Note ThefunctiononlyworksifthereisatleastoneHighGUIwindowcreatedandthewindowisactive.IfthereareseveralHighGUIwindows,anyofthemcanbeactive.
也就是说必须在有窗口显示的情况下,waitKey才有作用,否则无效。
比如调用cv.waitKey(0),如果此时没有活动的窗口,该函数立刻返回-1
以上这篇关于python下cv.waitKey无响应的原因及解决方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。