Display the different size of preview image from that of the captured images.
Mostra commenti meno recenti
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.
Risposta accettata
Più risposte (3)
Walter Roberson
il 16 Feb 2011
0 voti
Perhaps preview(imresize(cap1,[320 240])) or something similar?
John Smith
il 16 Feb 2011
John Smith
il 16 Feb 2011
0 voti
Categorie
Scopri di più su Image Preview and Device Configuration in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!