matlab怎么读取fit图片文件,对其操作
发布网友
发布时间:2022-06-29 19:59
我来回答
共1个回答
热心网友
时间:2023-10-13 05:54
1
2
3
4
5
6
7
8
[filename, pathname] = uigetfile('*.jpg', '读取图片文件'); %选择图片文件
if isequal(filename,0) %判断是否选择
msgbox('没有选择任何图片');
else
pathfile=fullfile(pathname, filename); %获得图片路径
M=imread(pathfile); %将图片读入矩阵
image(M); %绘制图片
end追问jpg文件,text文件没问题,fit文件可以用openfig()打开,但是对fig图像处理就不行了,因为他的数据结构比较特殊