FPS Image acquisition toolbox
2 次查看(过去 30 天)
显示 更早的评论
Hello,
I'm using the image acquisition toolbox to acquire video from a PAL camera. I'm absolutely sure that the sensor has 25 fps (VLC also confirmed) but when I start the video preview the FPS is stationary around a value of 12.5, as it acquires one frame every two.
I tried using:
% Access an image acquisition device.
vidobj = videoinput('winvideo', 1);
% Configure the number of frames to log.
vidobj.FramesPerTrigger = 50;
% Skip the first few frames the device provides
% before logging data.
vidobj.TriggerFrameDelay = 5;
% Access the device's video source.
src = getselectedsource(vidobj);
% Determine the device specific frame rates (frames per second) available.
frameRates = set(src, 'FrameRate')
but the frame-rate property is not supported.
How can i fix this?
Thank you in advance.
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Acquisition Using Image Acquisition Explorer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!