-
Notifications
You must be signed in to change notification settings - Fork 0
/
realfile.m
32 lines (29 loc) · 942 Bytes
/
realfile.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
function [v] = realfile(filename)
%realfile Ueberprueft ob die Datei eine moeglicheBilddatei ist.
%
% realfile(filename)
% Es wird ueberprueft ob eine Datei, die sich im
% Ordner 'TrainingSet' oder 'TestSet' befindet, eine
% moegliche Bilddatei ist.
% Wenn dies der Fall ist wird 'true'
% zurueckgeliefert, ansonst 'false'.
%
%
% I/O Spec
% filename Pfad der zu ueberpruefenden Datei
%
%
% v 1: es handelt sich um eine moegliche Bilddatei
% 0: es handelt sich um keine Bilddatei
[pathstr,name,ext] = fileparts(filename);
v=0;
if ~strcmp(filename,'.svn')
if ~strcmp(filename,'.DS_Store')
if ~strcmp(filename,'Thumbs.db')
if ~strcmp(ext,'.mat')
v=1;
end
end
end
end
end