Overlaying a power distribution plot over an image
1 回表示 (過去 30 日間)
古いコメントを表示
Usman Tahir Virk
2017 年 4 月 13 日
コメント済み: Usman Tahir Virk
2017 年 4 月 14 日
I am trying to overlay a power distribution plot over an image with axis labels similar to what is shown here, but not successful. I would greatly appreciate help. Thanks in advance.
img = imagesc('image.jpg');
imagesc([min_x max_x], [min_y max_y], img);
hold on;
mesh(angle,distance,power);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/162915/image.jpeg)
0 件のコメント
採用された回答
Walter Roberson
2017 年 4 月 13 日
In your first line use imread rather than imagesc
4 件のコメント
Walter Roberson
2017 年 4 月 14 日
I just realized you might be wanting the mesh plot to be the transparent part. If so then you should look at the various Alpha related properties at https://www.mathworks.com/help/matlab/ref/chartsurface-properties.html -- there are several.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Lighting, Transparency, and Shading についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!