how do i get a image which is present at the axes in gui?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
user06
am 1 Mär. 2015
Beantwortet: Image Analyst
am 1 Mär. 2015
suppose i have two axes. and in one axes i have taken an image , now i want that after clicking on a button that image will transfer on to the 2nd axes in matlab gui..
0 Kommentare
Akzeptierte Antwort
Geoff Hayes
am 1 Mär. 2015
Anamika - how did you load the image into the first axes? If you are using GUIDE, you can save the image to the handles structure (see guidata for details) within the callback (or whatever) that loads the image into the first image. Then, in the button callback, just access the image from handles and load it into the second axes.
0 Kommentare
Weitere Antworten (1)
Image Analyst
am 1 Mär. 2015
Use getframe() and take the cdata field:
% Create sample data.
z = peaks(64);
surf(z);
colormap(jet(256));
% Get image from the axes container.
f = getframe(gca)
thisImage = f.cdata;
figure;
imshow(thisImage);
Of course it's best if you just use the original data, like Geoff suggested, if you can, but sometimes that's not convenient if you have to pass the array way down deep into a call stack. Using setappdata/getappdata is not much more onerous than the code I gave, but you must remember to call setappdata whenever you put new stuff into the axes, and I think you'd end up having to call getframe anyway if you wanted to capture any graphics you put into the overlay above the image.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Graphics Object Properties finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!