How can I use the image data stored in setappdata twice in my code?

2 次查看(过去 30 天)
I stored an image data using setappdata in this function. I would like to use this image data twice in 2 separate functions. How can this be done?

采纳的回答

Walter Roberson
Walter Roberson 2016-1-15
Either use nested functions and shared variables, or getappdata() in both functions where you need the data.
  3 个评论
Walter Roberson
Walter Roberson 2016-1-15
getappdata() does not display data; you need to imshow() or image() or imagesc() the retrieved data.
And of course the retrieval has to be after the data has been stored; in your second case your flow of routines might not have stored it yet.

请先登录,再进行评论。

更多回答(0 个)

类别

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