Animation in GUI

5 次查看(过去 30 天)
Indira Iyer
Indira Iyer 2011-11-30
评论: Adam Danz 2020-5-26
Is there a way to load an animation (.gif/.mov) into a GUI? Maybe loading it onto axes or just as a background image.

回答(2 个)

Fangjun Jiang
Fangjun Jiang 2011-11-30
imread() can read .gif files. For movies, only .avi files and MATLAB movie structure are supported. See aviread(), movie2avi().

Walter Roberson
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.

类别

Help CenterFile Exchange 中查找有关 Movie 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by