GUI
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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....
0 Kommentare
Antworten (1)
Jacob Mathew
am 20 Nov. 2024
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:
0 Kommentare
Siehe auch
Kategorien
Mehr zu MATLAB Support Package for IP Cameras finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!