diff examples/Image Denoising/SMALL_ImgDenoise_DL_test_SPAMS_lambda.m @ 187:3cc204120431 luisf_dev

Merge from branch "bug_386"
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Thu, 09 Feb 2012 17:26:45 +0000
parents 9c418bea7f6a
children 8b3c71bb44eb
line wrap: on
line diff
--- a/examples/Image Denoising/SMALL_ImgDenoise_DL_test_SPAMS_lambda.m	Tue Feb 07 17:18:13 2012 +0000
+++ b/examples/Image Denoising/SMALL_ImgDenoise_DL_test_SPAMS_lambda.m	Thu Feb 09 17:26:45 2012 +0000
@@ -27,10 +27,10 @@
 %% Load an image
 TMPpath=pwd;
 FS=filesep;
-[pathstr1, name, ext, versn] = fileparts(which('SMALLboxSetup.m'));
+[pathstr1, name, ext] = fileparts(which('SMALLboxSetup.m'));
 cd([pathstr1,FS,'data',FS,'images']);
 [filename,pathname] = uigetfile({'*.png;'},'Select a file containin pre-calculated notes');
-[pathstr, name, ext, versn] = fileparts(filename);
+[pathstr, name, ext] = fileparts(filename);
 test_image = imread(filename);
 test_image = double(test_image);
 cd(TMPpath);