Webcam Image Acquisition - snapshot function

4 visualizaciones (últimos 30 días)
Cillian Hayde
Cillian Hayde el 10 de Dic. de 2020
Respondida: Abhisek Pradhan el 13 de Dic. de 2020
Hi,
I am using the snapshot function to acquire images. I am using a USB webcam to acquire the images.
Unfortunately, the snapshot function appears to operate slower than desired.
For the code below, I get approximately 64 milliseconds for each snapshot which translates to a frame rate of approximately 16.
clear
IntCam = webcam("Webcam C170");
f = @()SnapShot(IntCam);
t = timeit(f)
Seconds = 1;
FrameRate = Seconds/t
function img = SnapShot(RaspCam)
img = snapshot(RaspCam);
end
On the Matlab side of things, is there any implementation solutions that can speed up image acquisition via a webcam?
Thanks in advance for any suggestions
Regards
Cillian

Respuesta aceptada

Abhisek Pradhan
Abhisek Pradhan el 13 de Dic. de 2020
Here is a question related to Image Acquisition with high speed and fast capture.

Más respuestas (0)

Productos


Versión

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by