我有一个关于如何在 Matlab 上加载 Landsat 图像的问题。我的图片格式为 .img 并包含以下信息:
Columns and rows= 9487 x 8543
Number of bands= 6
Cellsize= 25 x 25
Source Type= continuous
Píxel type= unsigned integer
Pixel Depth= 16 bit
Scale factor= 0,9996
这是我的代码:
IM= multibandread('2000.img',[9487, 8543, 6],'int16',0,'ieee-le',{'Row','Range',[9487 8543]);
但是有以下错误:
错误:不平衡或意外的括号或括号。
我试图改变,但它不起作用。我能做些什么?
提前致谢,
艾玛