matlab如何将图像设置为透明色13
发布网友
发布时间:2023-10-12 13:21
我来回答
共2个回答
热心网友
时间:2024-12-14 18:49
[I,map,alpha] = imread('透明及改变大小.png'); % 插入图片
h1 = axes('position', [0.4 0.6 0.2 0.2], 'parent', gcf); %[位置 位置 大小 大小]
h = imshow(I, 'parent', h1);
set(h,'AlphaData',alpha)
热心网友
时间:2024-12-14 18:50
alpha
在7.1版以上均可运行。
alpha
Set transparency properties for objects in current axes
surf(peaks);
alpha(0.5);
参考资料:http://hi.baidu.com/zzz700/blog/item/d403a3888c92c30eb21bba6c.html