Matlab将RBG颜色转换为decimale值

时间:2015-06-20 22:08:20

标签: matlab

所以我有c = imread('foto.png'),我想把它转换为一个十进制值系统。它们是内置函数吗?

1 个答案:

答案 0 :(得分:1)

使用

    I = imread('foto.png');        
    I2 = im2double(I);

希望这有帮助