Capture an image from webcam
Afficher commentaires plus anciens
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
Réponses (1)
Chirag Gupta
le 22 Avr 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 commentaires
nghia nguyen
le 25 Avr 2011
Chirag Gupta
le 25 Avr 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
Catégories
En savoir plus sur Image Processing Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!