opencv python 按键_Python OpenCV:按键时刷新图像

该博客介绍了如何使用Python的OpenCV库通过按键事件来切换并显示不同的图像。在Windows和Linux操作系统上,程序读取指定文件夹中的图片,如'welcome.jpg', 'orange.jpg', 'apple.jpg', 'banana.jpg', 'doughnuts.jpg',然后根据用户按下键盘上的'w', 'a', 's'或空格键显示相应的图像。例如,按'w'键会显示橙子的营养信息,按'a'键显示苹果的营养信息,按's'键显示香蕉的营养信息,而空格键则退出程序。" 130564758,17985606,2023国赛网络系统管理:Windows服务部署解析,"['Windows', '服务部署', '自动化运维', 'Windows Server', '职业技能大赛']
摘要由CSDN通过智能技术生成

我已经解决了这个问题:import sys

import cv2

import os

def main():

File_Lst =[]

plat = sys.platform

#print plat

if plat == 'win32': #for windows operating system

File_dir = "C:\\Users\\user\\Desktop\\fruit\\"

elif plat == 'linux2': # for linux

File_dir = "/host/Users/user/Desktop/fruit/"

for file in os.listdir(File_dir):

File_Lst.append(file)

print File_Lst

welcome_index = File_Lst.index('welcome.jpg')

welcome_str = File_Lst[welcome_index]

orange_index = File_Lst.index('orange.jpg')

orange_str = File_Lst[orange_index]

apple_index = File_Lst.index('apple.jpg')

apple_str = File_Lst[apple_index]

banana_index = File_Lst.index('banana.jpg')

banana_str &#

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值