view event_detection/convertEventListToEventRoll.m @ 1:c8924e29f1aa

doorknock to knock
author emmanouilb <emmanouil.benetos.1@city.ac.uk>
date Sat, 13 Apr 2013 09:42:08 +0100
parents 2c9915c861d8
children
line wrap: on
line source
function [eventRoll] = convertEventListToEventRoll(onset,offset,classNames)


% Initialize
eventRoll = zeros(ceil(offset(length(offset))*100),16);
eventID = {'alert','clearthroat','cough','doorslam','drawer','keyboard','keys',...
    'knock','laughter','mouse','pageturn','pendrop','phone','printer','speech','switch'};


% Fill-in eventRoll
for i=1:length(onset)
    
    pos = strmatch(classNames{i}, eventID);
    
    eventRoll(floor(onset(i)*100):ceil(offset(i)*100),pos) = 1;
    
end;