Python 键盘和鼠标事件
2021/8/2 12:05:52
本文主要是介绍Python 键盘和鼠标事件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#!/usr/bin/env python # !_*_ coding:utf-8 _*_ import os import cv2 as cv import numpy as np import sys def keyboard_demo(): continue_flag = True single_flag = False while True: while continue_flag: mouse_demo() for filename in dir_list: path = os.path.join('imgs', filename) # print(path) image = cv.imread(path) cv.imshow("Contuinue", image) key = cv.waitKey(500) if key == ord('s'): continue_flag = False single_flag = True cv.destroyAllWindows() break if key & 0xFF == 27: sys.exit() while single_flag: for filename in dir_list: path = os.path.join('imgs', filename) # print(path) image = cv.imread(path) cv.imshow("Single", image) key = cv.waitKey(0) if key == ord('c'): continue_flag = True single_flag = False cv.destroyAllWindows() break if key & 0xFF == 27: sys.exit() def tempstop(event, x, y, flags, para): if event == cv.EVENT_LBUTTONDOWN: print("stop") cv.waitKey(0) elif event == cv.EVENT_MOUSEMOVE: print("Mouse move") cv.waitKey(1000) def mouse_demo(): cv.namedWindow("Contuinue", cv.WINDOW_AUTOSIZE) cv.setMouseCallback("Contuinue", tempstop) if __name__ == '__main__': dir_list = os.listdir('./imgs') # print(dir_list) # mouse_demo() keyboard_demo()
照片连续显示,
鼠标移至图像上面 ,图像暂停
按 “c” ,图像连续显示,按 “s”,图像单个显示
这篇关于Python 键盘和鼠标事件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南
- 2024-12-20Python编程基础与进阶
- 2024-12-19Python基础编程教程
- 2024-12-19python 文件的后缀名是什么 怎么运行一个python文件?-icode9专业技术文章分享