Matlab深度学习
View image files
Instructions are in the task pane to the left. Complete and submit each task one at a time.
Task 1
Import an image
img1 = imread('file01.jpg')
Task 2
View image
imshow(img1)
Task 3
Import and view more images
img2 = imread('file02.jpg')
img3 = imread('file03.jpg')
imshow(img2)
imshow(img3)
Talk is cheap. Show me the code