cv2.waitkey() code snippet explanation

python 复制代码
if cv2.waitKey(0) & 0xFF == ord('q'):
        break

通常,我们看到上述句子,用于在指定的时间内等待击键,通常用于图像和视频处理应用程序中,以暂停执行并允许用户与显示的窗口交互。

python 复制代码
cv2.waitkey(0)    # wait indefinitely
cv2.waitkey(3000)    # wait for 3000ms, which is 3s

至于 ord(),它用于返回字符的 unicode编码。

In Python, the ord() function returns the Unicode code for a character. This function takes a unit-length text as an argument and returns the Unicode equivalent of the specified parameter. The ord() function is used to convert a single character into its integer Unicode code value. The function only accepts a string with the length of onehttps://www.bing.com/ck/a?!&&p=875d7487e2e8b060a85beef00f83920bbebc2a908f282873dff588db0080cd2fJmltdHM9MTc0MjUxNTIwMA&ptn=3&ver=2&hsh=4&fclid=266c1486-d8f0-602c-0b69-010cd9966195&psq=ord+python&u=a1aHR0cHM6Ly9sZWFybnB5dGhvbi5jb20vYmxvZy9vcmQtZnVuY3Rpb24taW4tcHl0aG9uLw&ntb=1此处 & 的目的是为了提取出 后8位。cv2.waitKey() 返回一个 32-bit 的整数,通过按位与操作,提取出后八位,并将结果 与 'q' 的 Unicode码进行比较。(Unicode 码 是 ASCII 码的超集)

所以,上述代码会一直等待,直到你 输入'q'。

link:

https://stackoverflow.com/questions/35372700/whats-0xff-for-in-cv2-waitkey1

相关推荐
科研服务器mike_leeso9 分钟前
41 年 7 次转型!戴尔从 PC 到 AI 工厂的技术跃迁与组织重构
大数据·人工智能·机器学习
大千AI助手22 分钟前
机器学习模型评估指标AUC详解:从理论到实践
人工智能·机器学习·模型评估·roc·precision·recall·auc
FL162386312923 分钟前
C++基于opencv实现的暗通道的先验图像去雾
c++·opencv·计算机视觉
2501_9139817831 分钟前
2025年智能家居无线数传设备品牌方案精选
大数据·人工智能·智能家居
不老刘35 分钟前
GitHub Spec-Kit:AI 时代的规范驱动开发工具
人工智能·github·spec-kit
mit6.82438 分钟前
[tile-lang] 张量核心 | 传统MMA->WGMMA | 底层自动选择优化
人工智能·chatgpt
csuzhucong38 分钟前
人类知识体系分类
人工智能·分类·数据挖掘
DisonTangor1 小时前
Lumina-DiMOO:用于多模态生成与理解的全扩散大语言模型
人工智能·语言模型·自然语言处理·ai作画·aigc
golang学习记1 小时前
阿里又出手了,发布全新终端CLI工具,还支持VSCode
人工智能
机器之心1 小时前
具身智能迎来ImageNet时刻:RoboChallenge开放首个大规模真机基准测试集
人工智能·openai