matlab 提取檔案路徑名稱 帶字尾與不帶字尾
阿新 • • 發佈:2019-02-12
1、帶字尾
fileFolder = fullfile(matlabroot,'mathclass','raccoon'); % 遍歷資料夾下所有符合條件的檔案
dirOutput = dir(fullfile(fileFolder,'ra*.jpg')); % 提取路徑
fileNames = {dirOutput.name}'; % 獲得符合條件檔名
Matlab dir命令
Matlab使用dir函式獲得指定資料夾下的所有子資料夾和檔案,並存放在在一種為檔案結構體陣列中.
dir函式可以有呼叫方式為:
* dir('.')列出當前目錄下所有子資料夾和檔案
* dir('G:\Matlab')列出指定目錄下所有子資料夾和檔案
* dir('*.m')列出當前目錄下符合正則表示式的資料夾和檔案
2、不帶字尾
global pathname imname;
%fileneme 指的就是帶檔案字尾的檔名,如‘050.bmp’
%pathname指的是檔案路徑名
[filename, pathname] = uigetfile('*.bmp','Input filename');
%尋找字尾名前面的標誌‘.’
i = find('.'==filename);
%去除檔案字尾,提取單純的檔名
imname = filename(1:i-1);
%以讀的形式,開啟檔案. ‘r’=reading
fid1 = fopen(strcat(pathname,imname,'.bmp'),'r');
%判斷檔案是否已經被開啟
if(fid1 == -1)msgbox('Input File or Path is not correct','Warning','warn');
return;
end
%open a file to read
I1 = imread(strcat(pathname,imname,'.bmp'));
I2 = I1(:,:,1)/3+I1(:,:,2)/3+I1(:,:,3)/3;
I = imshow(I2);參考:http://www.cnblogs.com/cherler/p/3727713.html
http://blog.csdn.net/shenziheng1/article/details/50933435