我是靠谱客的博主 大意宝马,最近开发中收集的这篇文章主要介绍MATLAB: 指定路径下图片批量化处理并保存到另一路径,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

功能:读取某一路径下全部png文件,批量处理后再按原文件名保存到另一路径下

参考链接:https://www.computationalimaging.cn/2020/01/matlab-batch-process-pictures-under.html

 

file_path =  './seeprettyface_models/';
img_path_list = dir(strcat(file_path,'*.png'));
dist_path = './chaomo/';


filePathTry = 'G:FaceB_tryB_try';
filePathBtest = 'G:FaceB_tryBtest';
filePathBtrain = 'G:FaceB_tryBtrain';
filePathBval = 'G:FaceB_tryBval';
filePathAtest = 'G:FaceB_tryAtest';
filePathAtrain = 'G:FaceB_tryAtrain';
filePathAval = 'G:FaceB_tryAval';

h = waitbar(0,'Moving..., please wait');
% train
for im =1:length(img_path_list)
    fileName = img_path_list(im).name;
    filePath =  img_path_list(im).folder;
    fileImage = strcat(filePath,'',fileName);
    distImage = strcat(dist_path,'',fileName);
    image = imread(fileImage);
    image = imresize(image,[256,256]);
    imwrite(image,distImage);
    str = ['Moving image...',num2str(im*100/length(img_path_list)),'%'];
    waitbar(im/length(img_path_list),h,str)
end

 

最后

以上就是大意宝马为你收集整理的MATLAB: 指定路径下图片批量化处理并保存到另一路径的全部内容,希望文章能够帮你解决MATLAB: 指定路径下图片批量化处理并保存到另一路径所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部