matlab如何把tif图片转换成矩阵跟二维的等高线图

2025-04-04 00:09:20
推荐回答(1个)
回答1:

我以demo.tif为例;
im=imread('demo.tif');
[c, h] = contour(im);
clabel(c, h);
colorbar;