annotate Problems/generateMyDummyProblem.m @ 245:96d17e5dc5d3
Replaced the call to SMALL_ImgDenoise_DL_test_KSVDvsSPAMS with SMALL_ImgDenoise_DL_test_KSVDvsRLSDLAvsTwoStepMOD in Example 2 of SMALLBoxSetup.m.
author |
luisf <luis.figueira@eecs.qmul.ac.uk> |
date |
Wed, 31 Oct 2012 11:53:07 +0000 |
parents |
f42aa8bcb82f |
children |
|
rev |
line source |
ivan@130
|
1 function data=generateMyDummyProblem(varargin)
|
ivan@130
|
2 %% Template function that can be used for the sparse problem specification
|
ivan@130
|
3 %
|
ivan@130
|
4 % The problem specification function should take training signals and
|
ivan@130
|
5 % convert them to the matrix of training elements to be used for
|
ivan@130
|
6 % dictionary learning.
|
ivan@130
|
7 %
|
ivan@130
|
8 % input arguments:
|
ivan@130
|
9 % optional input parameters
|
ivan@130
|
10 %
|
ivan@130
|
11 % output arguments:
|
ivan@130
|
12 % data - SPARCO compatible problem structure
|
ivan@130
|
13
|
ivan@130
|
14 %% Change copyright notice as appropriate:
|
ivan@130
|
15 % Centre for Digital Music, Queen Mary, University of London.
|
ivan@161
|
16 % This file copyright 2011 Ivan Damnjanovic.
|
ivan@130
|
17 %
|
ivan@130
|
18 % This program is free software; you can redistribute it and/or
|
ivan@130
|
19 % modify it under the terms of the GNU General Public License as
|
ivan@130
|
20 % published by the Free Software Foundation; either version 2 of the
|
ivan@130
|
21 % License, or (at your option) any later version. See the file
|
ivan@130
|
22 % COPYING included with this distribution for more information.
|
ivan@130
|
23 %%
|