MATLAB: How to display an images – .jpg

image processingImage Processing Toolbox

I want to display an image that shows what the programs I create are solviing, How do I import or view a file .jpg or any format? I've used imageview but it only shows half of the picture.

Best Answer

data=imread('image.jpg')
imshow(data)