matlab - winopen(),在全屏窗口中从键盘读取
大家好
我编写了一个简短的程序,它运行一个 avi 文件并在显示 avi 时记录来自键盘的输入。问题是这样的。如果电影全屏显示,程序不会从键盘获取输入。仅当电影最小化时才接受输入。
这是我的代码
> 关闭所有
clc
winopen('c:/optic2.avi')
RT=[]
对于 i=1:1:5
抽动
计数=输入('');
RT(i)=目录
结束
xlswrite('c:/GS.xls',RT)
有什么想法吗?
谢谢
hi all
I wrote a short program that runs an avi file and records input from the keybpard while the avi is displaying. the problem is this. if the movie is in fill screen the program doesn't take the input from the keyboard. it takes the input only if the movie is minimizd.
this is my code
>
close all
clc
winopen('c:/optic2.avi')
RT=[]
for i=1:1:5
tic
count=input('');
RT(i)=toc
end
xlswrite('c:/GS.xls',RT)
any ideas?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 psychtoolbox 中的 KbChack。
I usend KbChack from the psychtoolbox.