-1
有人可以向我解釋如何將轉換後的圖像(從* .ppm轉換爲* .pgm)保存在matlab的特定目錄中。將轉換後的圖像保存到matlab中的特定路徑?
這是我的代碼。
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 [.
如何解決?
你看過錯誤信息嗎?你的括號不匹配的地方。 – Schorsch
當我運行該代碼時,我得到了錯誤mssg「表達式或語句不正確 - 可能不平衡({,或[。」但我的括號已經正確..我不知道該代碼有什麼問題 – user3507478
作爲提示:找一個沒有''''的'''' – Schorsch