vision.videoplayer fit to window
6 次查看(过去 30 天)
显示 更早的评论
The images I pass into the vision.videoplayer object are much larger than the object itself. I find it frustrating to manually select fit to window when I process many videos in a row at varying image sizes. Is there any way to programmatically fit the video to the video player object? The documentation on this toolbox is very skimpy at best and I find it surprising the object only has two properties listed:
not to mention most of the methods actually seem quite useless...
Before it is mentioned: I am specifically looking for an option with the vision.videoplayer object. I have the capability of making my own UI that can play the video at the correct fit but I do not wish to take this route for simplicity's sake.
0 个评论
回答(2 个)
Swarooph
2016-8-9
Have you tried playing with the Position property of the object? This can change the size of the VideoPlayer's window using a parameter of the form [left bottom width height].
Adrian Bell
2019-7-25
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Computer Vision with Simulink 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!