Reputation: 2617
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?
c = imread('foto.png')
Upvotes: 0
Views: 54
Reputation: 75
Use
I = imread('foto.png'); I2 = im2double(I);
Hope this helps
Upvotes: 1