comparison Problems/generateAudioDenoiseProblem.m @ 21:0211faef9add

(none)
author idamnjanovic
date Tue, 27 Apr 2010 13:31:44 +0000
parents 207a6ae9a76f
children 8e660fd14774
comparison
equal deleted inserted replaced
20:ce03373b3761 21:0211faef9add
1 function data=generateAudioDenoiseProblem(au, trainnum, blocksize, dictsize, overlap, sigma, gain, maxval, initdict); 1 function data=generateAudioDenoiseProblem(au, trainnum, blocksize, dictsize, overlap, sigma, gain, maxval, initdict);
2 2 %%% Audio Denoising Problem
3 % Ivan Damnjanovic 2010 3 %
4 % Centre for Digital Music, Queen Mary, University of London.
5 % This file copyright 2010 Ivan Damnjanovic.
6 %
7 % This program is free software; you can redistribute it and/or
8 % modify it under the terms of the GNU General Public License as
9 % published by the Free Software Foundation; either version 2 of the
10 % License, or (at your option) any later version. See the file
11 % COPYING included with this distribution for more information.
12 %
4 % 13 %
5 % 14 %
6 % generateAudioDenoiseProblem is part of the SMALLbox and generate a 15 % generateAudioDenoiseProblem is part of the SMALLbox and generate a
7 % problem for comaprison of Dictionary Learning/Sparse Representation 16 % problem for comaprison of Dictionary Learning/Sparse Representation
8 % techniques in audio denoising scenario. It is based on KSVD image 17 % techniques in audio denoising scenario. It is based on KSVD image
11 % au - audio samples to be denoised 20 % au - audio samples to be denoised
12 % trainnum - number of frames for training 21 % trainnum - number of frames for training
13 % blocksize - 1D frame size (eg 512) 22 % blocksize - 1D frame size (eg 512)
14 % dictsize - number of atoms to be trained 23 % dictsize - number of atoms to be trained
15 % overlap - ammount of overlaping frames between 0 and 1 24 % overlap - ammount of overlaping frames between 0 and 1
16 % Ron Rubinstein 25 %
17 % Computer Science Department
18 % Technion, Haifa 32000 Israel
19 % ronrubin@cs
20 %
21 % August 2009
22 26
23 27
24 disp(' '); 28 disp(' ');
25 disp(' ********** Denoising Problem **********'); 29 disp(' ********** Denoising Problem **********');
26 disp(' '); 30 disp(' ');