matlab如何搭建一个可以导入图片的界面

如题所述

第1个回答  2020-04-04
1、在gui上建立一个按钮button
2、为按钮button添加单击事件,用来导入txt文件
3、在单击事件中设置要打开的文件地址,以及读取操作设置
4、具体代码如下
function filename=onfileopen()
%untitled1 summary of this function goes here
% detailed explanation goes here
[filename,filepath]=uigetfile('*.txt','打开文件');%gui中打开文件
%file=[filename,filepath];
%fid=fopen(file,'rt');%read txt
filep=strcat(filepath,filename);
%filep
workimg=imread(filep);
%提取文件内容
imshow(workimg);
相似回答
大家正在搜