benzlxs's picture
Upload folder using huggingface_hub
d4035c1 verified
function ADMINrandomfilenames(HOMEANNOTATIONS, HOMEIMAGES, annotationfolder)
%
% ADMINrandomfilenames(HOMEANNOTATIONS, HOMEIMAGES, annotationfolder)
root = 'sun_a'; % this is the string that will be part of the first characters of the image name.
Nchar = 15;
if nargin == 1
HOMEIMAGES = HOMEANNOTATIONS;
end
% create list of folders
if nargin == 3
Folder = {annotationfolder};
else
Folder = [{''} folderlist(HOMEIMAGES)];
end
for n = 1:length(Folder)
f = Folder{n};
if ~isempty(fullfile(HOMEIMAGES, f))
files = dir(fullfile(HOMEIMAGES, f, '*.jpg'));
Nfiles = length(files);
for i = 1:Nfiles
% check if file already starts with the root, then ignore
oldimgname = files(i).name;
oldanoname = strrep(oldimgname, '.jpg', '.xml');
% generate new name
newname = lower([root char([65+fix(26*rand(1,Nchar))])]);
newimgname = [newname '.jpg'];
newanoname = [newname '.xml'];
% rename image
src = fullfile(HOMEIMAGES, f, oldimgname);
dest = fullfile(HOMEIMAGES, f, newimgname);
if 0
cmd = sprintf('mv "%s" %s', src, dest);
else
cmd = sprintf('rename "%s" %s', src, newimgname);
end
disp(cmd)
system(cmd);
% check if annotation exists.
src = fullfile(HOMEANNOTATIONS, f, oldanoname);
if exist(src, 'file')
% rename file
dest = fullfile(HOMEANNOTATIONS, f, newanoname);
if exist(dest, 'file')
error('Duplicate image detected')
end
if 0
cmd = sprintf('mv "%s" %s', src, dest);
else
cmd = sprintf('rename "%s" %s', src, newanoname);
end
disp(cmd)
system(cmd);
% load annotation
xml = loadxml(dest);
% change inside annotation file
ii = strfind(xml, '<filename>');
jj = strfind(xml, '</filename>');
xml = [xml(1:ii+9) newimgname xml(jj:end)];
% save annotation
fid = fopen(dest,'w');
fprintf(fid, xml');
fclose(fid);
end
end
end
end
function xml = loadxml(filename)
[fid, message] = fopen(filename,'r');
if fid == -1; error(message); end
xml = fread(fid, 'uint8=>char');
fclose(fid);
xml = xml';