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,matlab,图像处理)