How to automatically "fit to window" after launching vision.VideoPlayer?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Canberk Suat Gurel
am 25 Mär. 2018
Beantwortet: Adrian Bell
am 25 Jul. 2019
Using the following code I can position the VideoPlayer at a particular location but how can I make it (in code) adjust its ratio to fit to window? Please see the orange arrow below.
player = vision.VideoPlayer('Name', 'Processed Frame','Position',[10, 10, 800, 600]); %[left bottom width height]
0 Kommentare
Akzeptierte Antwort
Adrian Bell
am 25 Jul. 2019
Basically, you use figure handles on the player object to automatically press the "Maintain fit to window" button for you.
set(0,'showHiddenHandles','on')
fig_handle = gcf ;
fig_handle.findobj % to view all the linked objects with the vision.VideoPlayer
ftw = fig_handle.findobj ('TooltipString', 'Maintain fit to window'); % this will search the object in the figure which has the respective 'TooltipString' parameter.
ftw.ClickedCallback() % execute the callback linked with this object
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Computer Vision with Simulink finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!