changeset 20:cc32fa52f96f

added low pass filter unit to batch processing demo
author matthiasm
date Thu, 24 Oct 2013 21:24:52 +0100
parents 267812a4621a
children 92e2acb53c29
files demo_batchProcessing.m
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/demo_batchProcessing.m	Thu Oct 24 21:06:52 2013 +0100
+++ b/demo_batchProcessing.m	Thu Oct 24 21:24:52 2013 +0100
@@ -41,7 +41,6 @@
 
 % desired degradations
 degradationnames = {'liveRecording', ...
-                    'pubEnvironment', ...
                     'radioBroadcast', ...
                     'smartPhonePlayback', ...
                     'smartPhoneRecording', ...
@@ -55,7 +54,9 @@
                     'unit_applyMp3Compression', ...
                     'unit_applySpeedup', ...
                     'unit_applyWowResampling',...
-                    'unit_applyDelay'};
+                    'unit_applyDelay', ...
+                    'unit_applyHighpassFilter', ...
+                    'unit_applyLowpassFilter'};
 nDegradation = length(degradationnames);
 
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%