http://blog.sina.com.cn/s/blog_5618fdb9010005tc.html
MATLAB中读入图像的数据类型是uint8,而在矩阵中使用的数据类型是double
因此
I2=im2double(I1) :把图像数组I1转换成double精度类型;
如果不转换,在对uint8进行加减时会产生溢出
如果不转换,在对uint8进行加减时会产生溢出
图像数据类型转换函数
http://blog.sina.com.cn/s/blog_5618fdb9010005tc.html