Animation in GUI
5 次查看(过去 30 天)
显示 更早的评论
Is there a way to load an animation (.gif/.mov) into a GUI? Maybe loading it onto axes or just as a background image.
1 个评论
Adam Danz
2020-5-26
Since this question continues to get many views years later, here's how to load GIF images to AppDesigner buttons.
回答(2 个)
Fangjun Jiang
2011-11-30
imread() can read .gif files. For movies, only .avi files and MATLAB movie structure are supported. See aviread(), movie2avi().
0 个评论
Walter Roberson
2011-11-30
If the question is whether one can load an image that "plays itself", then the answer is NO.
MATLAB does not directly support displaying animated GIF files; you would have to convert them to movies.
You can use movie() to play movies, but I believe it is synchronous -- certainly there are no asynchronous controls.
I cannot seem to find any Mathworks video players with asynchronous controls -- though if you have the Computer Vision toolbox you could use http://www.mathworks.com/help/toolbox/vision/ref/vision.videoplayerclass.html and use something like a timer callback to schedule frames.
The Image Processing toolbox has implay() but no obvious ways asynchronous ways of controlling it.
The MATLAB File Exchange Contribution videofig might be your best bet, in that you could strip out what you do not need and add in an auto-repeat.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Movie 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!