How to change current figure handle?

9 次查看(过去 30 天)
I want to get image from a handle named axes1 in my code. How can I use gcf to get that image? I tried this but it is not working:
axes(handles.axes1);
train_image=getimage(gcf);
The image I am getting is from another axes(not axes1). Please help.
  1 个评论
Stephen23
Stephen23 2017-4-1
编辑:Stephen23 2017-4-1
Do no use gcf or gca for code that you want to work properly. Always obtain, pass, and use graphics handles explicitly for all of your GUI objects.

请先登录,再进行评论。

采纳的回答

Stephen23
Stephen23 2017-4-1
编辑:Stephen23 2017-4-1
train_image = getimage(handles.axes1)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by