Mostrar comentarios más antiguos
Hi all. I wanna ask how to make interface(fig) with real time camera video... I am first time doing this.... I thing i will be using ActiveX Control>WIA video preview class. Maybe someone have a example how to do his... Then I using this comands: vid = videoinput('winvideo'); figure('Toolbar','none',... 'Menubar', 'none',... 'NumberTitle','Off',... 'Name','My Preview Window'); vidRes = get(vid, 'VideoResolution'); nBands = get(vid, 'NumberOfBands'); hImage = image( zeros(vidRes(2), vidRes(1), nBands) ); preview(vid, hImage);
mat lab make new fig with wideo but for me need to change size, add 2 buttons and another staff. When I wanna make on the new blank of gui not working.... For me need video or example how make fig with real time video from camera....
Respuestas (1)
Jacob Mathew
el 20 de Nov. de 2024
0 votos
Hey Eimantas,
You can use the preview method, which is a part of MATLAB Support package for USB Webcam, to see the live output from the webcam device of your choice passed as a parameter to it. Refer the documentation below for more details:
However, if you want to create a custom UI to display the live output, then the following MATLAB Answer is a good starting point:
Categorías
Más información sobre MATLAB Support Package for IP Cameras en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!