m*******n 发帖数: 370 | 1 I need to convert uint8 to double, but when I doc "im2double" in Matlab
7.9.0(R2009b), it can not be found. Any suggestion?
Thanks! | r*********s 发帖数: 2157 | 2 if 'a' is unit8 values 0-255
b = im2double(a); % this is double values 0-1
im2double is correct, make sure you have the image processing toolbox | m*******n 发帖数: 370 | |
|