Capture an image from webcam
显示 更早的评论
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
回答(1 个)
Chirag Gupta
2011-4-22
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 个评论
nghia nguyen
2011-4-25
Chirag Gupta
2011-4-25
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
类别
在 帮助中心 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!