Mercurial > hg > simscene-py
view nonExposed/getClassInfo.m @ 37:41cc77e844fe
changed README.md to reflect that this is not yet mature
author | Emmanouil Theofanis Chourdakis <e.t.chourdakis@qmul.ac.uk> |
---|---|
date | Thu, 05 Oct 2017 15:15:07 +0100 |
parents | e26be576f241 |
children |
line wrap: on
line source
clear all close all addpath(genpath('~/projets/simscene')) inputPath='~/Dropbox/databases/environment/dcase2/dcase2_train_dev/train/sound/event/'; label={'alert','clearthroat','cough','keyboard','doorslam','drawer','keys','knock','laughter','pageturn','phone','speech'}; if ~exist(inputPath, 'dir') error(['Could not find local dir ',path,'\n']); end for jj=1:length(label) eventInfo(jj).query = label{jj}; samples = dir([inputPath '*wav']); samplesInd = find(cellfun('isempty',regexpi({samples.name}, eventInfo(jj).query,'match'))==0); eventInfo(jj).startTimes=[]; eventInfo(jj).endTimes=[]; eventInfo(jj).names={}; for ii=1:length(samplesInd) samplesInfo=audioinfo([inputPath samples(samplesInd(ii)).name]); eventInfo(jj).names{end+1} = samples(samplesInd(ii)).name; eventInfo(jj).startTimes(end+1) = 0; eventInfo(jj).endTimes(end+1) = samplesInfo.TotalSamples/samplesInfo.SampleRate; end end save('data/eventInfo','eventInfo') disp('')