有人可以向我解释如何在matlab的特定目录中保存我们转换后的图像(从* .ppm到* .pgm)。
这是我的代码。
pathName = 'D:\Matlab\Training\PGM_Files';
% Create it if it doesn't exist.
if ~exist(pathName, 'dir')
mkdir(pathName);
% This will create to the full depth of the path.
% Upper folder levels don't have to exist yet.
end
fullFileName = fullfile(pathName);
pgm_File_Images(loop1,1)=imwrite((Train_Images,['data',num2str(loop1),'.pgm']),
fullFileName);
我想将所有文件保存到 PGM_Files 文件夹中。 但每次我收到错误
Expression or statement is incorrect--possibly unbalanced (, {, or [.
如何解决?
答案 0 :(得分:0)
答案已经在评论中给出,我将在此发布,以确保问题不会得不到答案:
你没有为imwrite提供正确的输入参数。那' S 为什么最后一个声称是无与伦比的。