GUI - "entrance effect"

1 次查看(过去 30 天)
Mark Golberg
Mark Golberg 2016-1-21
Hello, what's the best way to create in matlab GUI (GUIDE) a "entrance effect". I mean, like you have in power point animation.
I have a certain image, let's say size = [1000 1000]. I'd like to show first (:,1:100) then (:,101:200) and so forth.
If I simply try to imagesc a certain slice of my image, it gets "smeared" all over the axes. How can draw each column of the matrix image at it's right location?
Also, what's the best way create a "smooth entrance left-to-right" effect? I was thinking on working with pause...is there a better approach? You know, something like the entrance speed you have in Power Point...

回答(1 个)

Walter Roberson
Walter Roberson 2016-1-22
You can pass x and y coordinates of the corners to imagesc(). Please read the documentation about what the coordinates represent as you will probably want to add 1/2 to the "natural" coordinates to use.
  6 个评论
Mark Golberg
Mark Golberg 2016-1-22
I've found the solution. Simply needed to invert the order. First image... then set(ax, ....)
It draw slice perfectly.
THANK YOU.
Walter Roberson
Walter Roberson 2016-1-22
I keep forgetting that the axes limits are cleared for new drawing if hold is not on.

请先登录,再进行评论。

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by