diff util/SMALL_AudioDeNoiseResult.m @ 178:4ea4badb2266 danieleb

added ramirez dl (to be completed) and MOCOD dictionary update
author Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk>
date Thu, 17 Nov 2011 11:22:17 +0000
parents f42aa8bcb82f
children
line wrap: on
line diff
--- a/util/SMALL_AudioDeNoiseResult.m	Thu Nov 17 11:18:25 2011 +0000
+++ b/util/SMALL_AudioDeNoiseResult.m	Thu Nov 17 11:22:17 2011 +0000
@@ -2,7 +2,7 @@
 %% Plots the results of Audio denoising experiment - underconstruction
 
 %   Centre for Digital Music, Queen Mary, University of London.
-%   This file copyright 2009 Ivan Damnjanovic.
+%   This file copyright 2011 Ivan Damnjanovic.
 %
 %   This program is free software; you can redistribute it and/or
 %   modify it under the terms of the GNU General Public License as
@@ -13,7 +13,7 @@
 
 fMain=figure('Name', sprintf('File %s (training set size- %d, sigma - %d)',SMALL.Problem.name, SMALL.Problem.n, SMALL.Problem.sigma));
 m=size(SMALL.solver,2);
-maxval=SMALL.Problem.maxval;
+maxval=max(SMALL.Problem.Original);
 au=SMALL.Problem.Original;
 aunoise=SMALL.Problem.Noisy;
 
@@ -25,7 +25,7 @@
 
 for i=1:m
     params=SMALL.solver(i).param;
-    sWav=subplot(2, m, m+i, 'Parent', fMain); plot(SMALL.solver(i).reconstructed.Image/maxval, 'Parent', sWav);
+    sWav=subplot(2, m, m+i, 'Parent', fMain); plot(SMALL.solver(i).reconstructed.audio/maxval, 'Parent', sWav);
     title(sprintf('%s Denoised audio, PSNR: %.2fdB', SMALL.DL(i).name, SMALL.solver(i).reconstructed.psnr),'Parent', sWav );
     if strcmpi(SMALL.DL(i).name,'ksvds')
         D = kron(SMALL.Problem.basedict{2},SMALL.Problem.basedict{1})*SMALL.DL(i).D;