'A timeout occurred during GETSNAPSHOT' error
显示 更早的评论
Hello, I'm working fine with a code that suddenly sends me the "A timeout occurred during GETSNAPSHOT" error I don't know why this is happening, here's the code:
clear all
clc
close all
%Corresponding webcam:
vid=videoinput('winvideo',3);
%set(vid,'FramesPerTrigger',10);
%triggerconfig(vid,'manual');
aviObject=avifile('VideoP_2.avi');
%aviObject=VideoWriter('Video6.avi');
%preview(vid)
for iFrame=1:30 %Frames
sprintf('Frame %d',iFrame)
I=getsnapshot(vid);
F=im2frame(I);
aviObject=addframe(aviObject,F);
end
sprintf('Cut')
aviObject=close(aviObject);
Do you know why is this happening or how can I solve this? Thanks a lot!
回答(1 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Image Acquisition Support Packages for Hardware Adaptors (Generic Video Interface) 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!