主要使用fopen和fprintf ,具体用法建议直接看官方文档;选定函数,右键查看帮助!!!
1、我主要是将图像名保存在一个.txt文件里!保存其他数据同样也可以参考这种方式修改即可!
img_path = './oxbuild_images/*.jpg';
img_files = dir(img_path);
img_NameList = {img_files(~[img_files.isdir]).name};
img_NameList = img_NameList';
numImg = length(img_NameList);
% 保存.txt文件
fop = fopen('query.txt','wt');
for i = 1:numImgfprintf(fop,'%s\n',img_NameList{i,1});
end
本文链接:https://my.lmcjl.com/post/8762.html
展开阅读全文
4 评论