MATLAB: Read an image in matlab2014a

read image

unable to read a jpg iage in matab
how to read
souce code please

Best Answer

Hi,
This is the command:
A = imread('IMAGE.jpg'); % Read the image in MATLAB
imshow(A) % Display the imported image
Good luck