-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZIPproject.m
90 lines (77 loc) · 2.26 KB
/
ZIPproject.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
% ZIPproject - create a zip file of the project
zipfilename = sprintf('EMScanSupression_%s.zip',date);
%% specify files to put in ZIP
filelist = {};
count = 1;
% .m files in current folder
names = dir('*.m');
for i = 1:length(names)
filelist{count} = sprintf('%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
% .c files in current folder
names = dir('*.c');
for i = 1:length(names)
filelist{count} = sprintf('%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
% .cpp files in current folder
names = dir('*.cpp');
for i = 1:length(names)
filelist{count} = sprintf('%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
% .h files in current folder
names = dir('*.h');
for i = 1:length(names)
filelist{count} = sprintf('%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
% positive images
names = dir('positiveImage/*');
for i = 1:length(names)
if names(i).name(1) ~= '.'
filelist{count} = sprintf('positiveImage/%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
end
% negative images
names = dir('negativeImage/*');
for i = 1:length(names)
if names(i).name(1) ~= '.'
filelist{count} = sprintf('negativeImage/%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
end
names = dir('storedExponentialModel*.mat');
for i = 1:length(names)
if names(i).name(1) ~= '.'
filelist{count} = sprintf('%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
end
names = dir('README*');
for i = 1:length(names)
if names(i).name(1) ~= '.'
filelist{count} = sprintf('%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
end
names = dir('learning_result.mat');
for i = 1:length(names)
if names(i).name(1) ~= '.'
filelist{count} = sprintf('%s',names(i).name);
disp([num2str(count) ': added ' filelist{count}]);
count = count + 1;
end
end
%% zip
zip(zipfilename,filelist,pwd);