Capture an image from webcam
Ältere Kommentare anzeigen
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
Antworten (1)
Chirag Gupta
am 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 Kommentare
nghia nguyen
am 25 Apr. 2011
Chirag Gupta
am 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
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!