MATLAB: Meaning of imread values

imageImage Processing Toolboxno semicolon

Can i know what is the meaning of the values displayed after the imread function?
Eg : X = imread(picture.jpg)

Best Answer

Because you did not put a semicolon at the end of the line to suppress the echo of results to the command window, the numbers you see will be the image pixel values, basically the brightness at each pixel.
Related Question