Capture image from webcam on mouse click.

5 visualizaciones (últimos 30 días)
ROHIT AILA
ROHIT AILA el 8 de Nov. de 2016
Editada: Abhinav Gurram el 11 de Nov. de 2016
Hi,
I am trying to capture image from a webcam. The image snapshot has to be taken after a mouse click. I want to have a click button on preview screen. Can anyone help me do this? Below part is my code to capture image from webcam.
% webcam capture
cam1 = webcam('FaceTime');
preview(cam1);
pause(5);
img = snapshot(cam1);
closePreview(cam1);
imshow(img);
clear('cam1');

Respuesta aceptada

Abhinav Gurram
Abhinav Gurram el 11 de Nov. de 2016
Editada: Abhinav Gurram el 11 de Nov. de 2016
Taking a snapshot of an image upon a button click can be achieved in the following two ways:
1.Create a simple appdesigner application with the above code, and a button. Associate a callback function to the button, that gets executed when this button is clicked, and captures the snapshot. See app_ex for a simple appdesigner application example.
2. Another way to achieve this is by using the Image Acquisition Toolbox's Image Acquisition Tool.This tool provides a GUI and helps preview, configure, acquire, and save image data. The Image Acquisition tool can be accessed by using the 'imaqtool' command or by selecting Image Acquisition on the Apps tab. Visit Imaqtool to know more about how to use the Image Acquisition tool.
Hope this helps!

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by