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')
上一篇: 小产之后吃什么才好
下一篇: 0-1背包问题(回溯)