-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgetImageName.m
27 lines (25 loc) · 1.19 KB
/
getImageName.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
% generate imagename
function imagename=getImageName(fullname,imagefolder)
% This function convert the labeling file name into the corresponding
% imagename. *IMPORTANT* Please note that this function is used quite a lot
% and it is suitable only for one layer of file directory, i.e.
% -- imagefolder/imagename -- labelfolder/labelfile.
% You can edit this function if you want to make it for multiple layers of
% file directory. But if you keep the function the way it is, pay attention
% to the file directory and make sure
% that when you call this function, the image file is just under one layer
% of folder and the label file is just under one layer of folder.
% inputs:
% fullname: label file name with one layer of folder
% imagefolder; the folder that contains the corresponding image
% outputs:
% imagename: the corresponding image name
%filenamecrop = strsplit(fullname, {'/','.', '_dis.', '_res.','_111.'});
filenamecrop = strsplit(fullname, {'/','\','.txt','.xls', '_dis.', '_crop.txt' ,'_res.','_111.'});
imfolder = 'positive';
if (nargin==2)
imfolder=imagefolder;
end
filenamecrop{1} = imfolder;
filenamecrop{end} = 'jpg';
imagename = strjoin(filenamecrop,{'/', '.'});