3

サイズ2000x4059のmodistiff画像int16値があります。画像に0.0001の倍率を掛けて、Matlabで反射率を取得したいと思います。

4

1 に答える 1

1

@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
于 2013-01-24T12:52:03.327 に答える