-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutterancePartition2.m
42 lines (36 loc) · 1.38 KB
/
utterancePartition2.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
function [newMFCCs, newDatabase] = utterancePartition2(database)
%% Dzieli nagrania na ok. 30 sekundowe okna. Tylko dla nagran powyej 60 sekund.
% Np. dla 60-sekundowego nagrania otrzymujemy 3 macierze MFCC: oryginalna,
% pierwsze 30 s nagrania, drugie 30 sekund nagrania.
%%
disp('Generating more data...')
MFCCs = database.MFCC_delta_cms;
minSec = 30;
k = database.duration_sec >= minSec*2;
licz = 1;
for i = 1:size(database,1)
if k(i)
nFrames = size(MFCCs{i,1},2);
nUtt = floor(database.duration_sec(i)/minSec);
for j = 1:nUtt+1
if j == 1
newMFCCs{licz,1} = MFCCs{i,1}(:,:);
newDatabase(licz,:) = database(i,{'file_id', 'duration_sec', 'gender', 'age', 'age_class'});
licz = licz + 1;
else
w = floor(nFrames/nUtt);
try newMFCCs{licz,1} = MFCCs{i,1}(:,(j-2)*w+1:(j-1)*w);
catch warning('w')
end
newDatabase(licz,:) = database(i,{'file_id', 'duration_sec', 'gender', 'age', 'age_class'});
newDatabase.duration_sec(licz) = w/100;
licz = licz + 1;
end
end
else
newMFCCs{licz,1} = MFCCs{i,1}(:,:);
newDatabase(licz,:) = database(i,{'file_id', 'duration_sec', 'gender', 'age', 'age_class'});
licz = licz + 1;
end
end
disp('More data generated.')