mat
mat

Reputation: 2617

Matlab convert RBG color to decimale value

So I have c = imread('foto.png') and I would like to convert it to a decimale value system. Is their a built-in function?

Upvotes: 0

Views: 54

Answers (1)

AWAbid
AWAbid

Reputation: 75

Use

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

Hope this helps

Upvotes: 1

Related Questions