フィルターのクリア

Help on showing a mask in an axes object for a MATLAB GUI

2 ビュー (過去 30 日間)
AP
AP 2013 年 2 月 9 日
Dear All,
I have designed a GUI which has an axes object. I want to create and overlay a mask on an image in the axes of the GUI, as shown below in the picture. I tried the tips in this link but MATLAB complains with the following error message:
The name 'AlphaData' is not an accessible property for an instance of class 'axes'.
My question is:
  • Then how can I overlay it on the original image (shown in grayscale in the image)?
In fact, the user selects an image by my MATLAB GUI. The code then identifies the areas in the image, which have certain properties, and highlight those areas with the pattern I showed in the uploaded picture. The final image, which is an overlay of the original image and the mask template, will be shown in an axes object in the GUI.
Thanks,
Ahmad

採用された回答

Jan
Jan 2013 年 2 月 10 日
Please post the code, which causes the error. The 'AlphaData' property should not be set for the AXES, but in:
set(h, 'AlphaData', alpha_data);
the handle "h" belongs to an image object. The error message appears, if you use the axes' handle instead.

その他の回答 (1 件)

Image Analyst
Image Analyst 2013 年 2 月 9 日
  4 件のコメント
AP
AP 2013 年 2 月 9 日
編集済み: AP 2013 年 2 月 9 日
The user selects an image by the MATLAB GUI. The code then identifies the areas in the image, which have certain properties, and highlight those areas with the pattern I showed in the uploaded picture. The final image, which is an overlay of the original image and the mask template, will be shown in an axes object in the GUI.
Image Analyst
Image Analyst 2013 年 2 月 10 日
Again, what does your code do? Can we see it?

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

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by