您可以
ord()为此使用Python中的函数。
例如,如果要触发“ a”键,请执行以下 *** 作:
if cv2.waitKey(33) == ord('a'): print "pressed a"
在此处查看示例代码:
绘制直方图
更新:
查找任何键的键值是使用以下简单脚本打印键值:
import cv2img = cv2.imread('sof.jpg') # load a dummy imagewhile(1): cv2.imshow('img',img) k = cv2.waitKey(33) if k==27: # Esc key to stop break elif k==-1: # normally -1 returned,so don't print it continue else: print k # else print its value
有了这段代码,我得到了以下值:
Upkey : 2490368DownKey : 2621440LeftKey : 2424832RightKey: 2555904Space : 32Delete : 3014656...... # Continue yourself :)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)