scanimage.m
来自「matlab代码」· M 代码 · 共 14 行
M
14 行
function image1=scanimage
% dialog for opening files
%imagefile1=inputdlg('Please input the filename of image');
[imagefile1 , pathname]= uigetfile('*.*;*.*','打开指纹图像');
if imagefile1 ~= 0
cd(pathname);
image1=testread(char(imagefile1));
end;
%image1=testread(char(imagefile1));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?