Display the different size of preview image from that of the captured images.
显示 更早的评论
Hi, I have a question about webcam Image Capture and Preview.
The following is my simple code. This cpde captures images from the webcam every one second while displaying the preview image.
----------------------------------------------------------------------
cap1 = videoinput('winvideo', ID_num1,'YUY2_1920x1080');
preview(cap1)
for 1 = 1:1000
frame1 = getsnapshot(cap1);
imwrite(frame1,'title','.jpg');
pause(1)
end
----------------------------------------------------------------------
The preview image from my webcam is 1920x1080. Instead, I would like to display the preview image 320x240 while capturing the images from the webcam for 1920x1080.
Is there any suggestion or any way to solve my problem?
Thank you for your help and kindness.
采纳的回答
更多回答(3 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Image Preview and Device Configuration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!