Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サイズ2000x4059のmodistiff画像とint16値があります。画像に0.0001の倍率を掛けて、Matlabで反射率を取得したいと思います。
int16
@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