Capture image from webcam on mouse click.
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
ROHIT AILA
il 8 Nov 2016
Modificato: Abhinav Gurram
il 11 Nov 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');
0 Commenti
Risposta accettata
Abhinav Gurram
il 11 Nov 2016
Modificato: Abhinav Gurram
il 11 Nov 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!
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Acquisition Support Packages for Hardware Adaptors (Generic Video Interface) in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!