Redrawing an image in a UIAxes that has already been drawn

7 ビュー (過去 30 日間)
Jason
Jason 2020 年 10 月 12 日
コメント済み: Jason 2020 年 10 月 13 日
Hello, I am using Appedesigner where I have a ImageButtonDownCallback(app, source, eventargs) event that takes an image from a UIAxes and creates a ROI in UIAxes2. The ROI is created from the larger image on UIAxes centred around the mouse click coordinates. This works fine.
%Add ROI to UIAXES2
cla(app.UIAxes2,'reset');
n=str2num(app.ImageScalenEditField.Value);
[high,low] = Autoscale(app,ROI,n); %My autoscale function
app.myimage=imshow(ROI,[low,high],'Parent',app.UIAxes2) %image creation
My issue is, I also use the UIAxes2 to view plots from other analaysis and sometimes want to redraw the original ROI that was on the UIAxes2 with the same image scaling that was used in the original imshow. I thought I could some how use app.myimage like
imshow(app.myimage,'Parent',app.UIAxes2); %image creation using previous settings
or
app.UIAxes2=app.myimage
Is this possible or do I have to fully calc and draw it again like
n=str2num(app.ImageScalenEditField.Value);
[high,low] = Autoscale(app,ROI,n); %My autoscale function
app.myimage=imshow(ROI,[low,high],'Parent',app.UIAxes2) %image creation
Thanks
Jason

採用された回答

Geoff Hayes
Geoff Hayes 2020 年 10 月 13 日
Hi Jason - from image created by imshow, the app.myData is an image object which (from the tests I did) may no longer be valid depending upon how you update the UIAxes2. You may want to try something like
%Add ROI to UIAXES2
cla(app.UIAxes2,'reset');
n=str2num(app.ImageScalenEditField.Value);
[high,low] = Autoscale(app,ROI,n); %My autoscale function
imageObject = imshow(ROI,[low,high],'Parent',app.UIAxes2) %image creation
app.myimage = imageObject.CData;
which you can then later show on the axes as
imshow(app.myimage,'Parent',app.UIAxes2);
  1 件のコメント
Jason
Jason 2020 年 10 月 13 日
Thats what I was looking for "CData"!
Thnak you Geoff
Jason

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImages についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by