Mercurial > hg > emotion-detection-top-level
diff Code/Collation/get_Jitter.m @ 4:92ca03a8fa99 tip
Update to ICASSP 2013 benchmark
author | Dawn Black |
---|---|
date | Wed, 13 Feb 2013 11:02:39 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Code/Collation/get_Jitter.m Wed Feb 13 11:02:39 2013 +0000 @@ -0,0 +1,34 @@ +function [] = get_Jitter( dirName, statsFileID ) + +% this function collates the results of all values calculated using the PRAAT software + +% For jitter and shimmer PRAAT returns only a single value, not a +% frame-by-frame calculation. Therefore we cannot find the varience etc. + + + % identify the speaker in the stats file + fprintf( statsFileID, '%s ', dirName ); + +% -------------- get the jitter metrics ------------------- +% JITTER: ddp \t local \t ppq5 \t rap \t + + metricName = '_jitter_ddp'; + metricFileName = [ dirName metricName '.txt']; + readValueFromFile( statsFileID, metricFileName, metricName ); + + metricName = '_jitter_local'; + metricFileName = [ dirName metricName '.txt']; + readValueFromFile( statsFileID, metricFileName, metricName ); + + metricName = '_jitter_ppq5'; + metricFileName = [ dirName metricName '.txt']; + readValueFromFile( statsFileID, metricFileName, metricName ); + + metricName = '_jitter_rap'; + metricFileName = [ dirName metricName '.txt']; + readValueFromFile( statsFileID, metricFileName, metricName ); + + + fprintf( statsFileID, '\n'); + + \ No newline at end of file