0


Matlab-融合图片与绘图

1.读取图片

im=imread('001.jpg');
% 必须是RGB的格式
% 如果是索引形式,需要转换格式
% RGB = ind2rgb(a,b);

2.构建数据

[X,Y]=meshgrid(-1:0.1:1,-1:0.1:1);
Z=X.^2+Y.^2+1;

3.绘图

hold on
box on
surf(X,Y,Z);
imagesc([min(min(X)),max(max(X))],[min(min(Y)),max(max(Y))],im);
view(3);
hold off
exportgraphics(gcf,'001.png','Resolution',600);

在这里插入图片描述

标签: matlab 图像处理

本文转载自: https://blog.csdn.net/weixin_43717144/article/details/124893655
版权归原作者 HappyLaber 所有, 如有侵权,请联系我们删除。

“Matlab-融合图片与绘图”的评论:

还没有评论