我有一个大小为 2000 x 4059 的 modis tiff 图像,具有int16
值。我想将图像乘以比例因子 0.0001 以获得 Matlab 中的反射率。
正如@zplesivcak所说:
img = imread( 'myModisImg.tiff' ); %// img should be 2000x4059 array of type uint16
img = im2double( img ); %// now img is of type double in the range [0..1]
rimg = img * 0.0001; %// multiply each pixel by 0.0001