Borrar filtros
Borrar filtros

using webcam instead of an avi file ?

1 visualización (últimos 30 días)
Hussein Alwalid
Hussein Alwalid el 2 de Nov. de 2018
Comentada: Hussein Alwalid el 2 de Nov. de 2018
Hi i am new to Matlab and i've been trying to edit this example Right Here to detect multiple objects and its working great but i'm trying to edit it to use my laptop camera instead of an avi video ? i know i can use this code to read from my camera
vidobj = imaq.VideoDevice('winvideo', 1);
but i didn't know how to edit it, can someone please help?

Respuestas (1)

Caglar
Caglar el 2 de Nov. de 2018
Editada: Caglar el 2 de Nov. de 2018
camera = webcam;
pictures{1}=camera.snapshot;
while true %well end it some point
pictures{end+1}=camera.snapshot;
image( picture{end}); %if you want to watch
drawnow; %if you want to watch
end
clear('camera');
pictures will be a cell array of snapshots. dont forget to preallocate pictures array.
  1 comentario
Hussein Alwalid
Hussein Alwalid el 2 de Nov. de 2018
Yes but how do I substitute this in my example code?

Iniciar sesión para comentar.

Categorías

Más información sobre MATLAB Support Package for IP Cameras en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by