2014-04-08 52 views
-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 [. 

如何解決?

+2

你看過錯誤信息嗎?你的括號不匹配的地方。 – Schorsch

+0

當我運行該代碼時,我得到了錯誤mssg「表達式或語句不正確 - 可能不平衡({,或[。」但我的括號已經正確..我不知道該代碼有什麼問題 – user3507478

+1

作爲提示:找一個沒有''''的'''' – Schorsch

回答

0

答案在評論中已經給出,我將因此它張貼在這裏,以確保問題不仍然沒有答案:

您不提供正確的輸入參數imwrite。這是 爲什麼最後)聲稱是無與倫比的。

相關問題