欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Matlab中的 imread 函数

程序员文章站 2022-05-20 21:57:45
...

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') 
Matlab中的 imread 函数