Capture an image from webcam
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi! I have a webcam.I want to capture an image from webcam and the save that picture into some type of image (*.jpg,*.png...).Can you tell me how can I do that.Thanks a lot
0 Commenti
Risposte (1)
Chirag Gupta
il 22 Apr 2011
The Image Acquisition Toolbox should be able to help you achieve that. The commands are straightforward.
The command would just be:
vidobj = videoinput('winvideo');
snapshot = getsnapshot(vidobj);
imagesc(snapshot)
2 Commenti
Chirag Gupta
il 25 Apr 2011
You could post this as a separate question with a title like image processing. This way you could get the Image Processing gurus to step in
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox 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!