1. 程式人生 > >Matlab中的 imread 函式

Matlab中的 imread 函式

imread : read image from graphics files  該定義為mathworks 的官方定義

點選開啟連結 https://uk.mathworks.com/help/matlab/ref/imread.html

m= imread('2.jpg'); % revise the file name here
figure('NumberTitle', 'off', 'Name', 'The landscape') % name the figure, delete the figure number 
image(m) % show the figure
title('The landscape')