annotate util/sparco utils/thumbwrite.m @ 219:4337e28183f1 luisf_dev

Modified help comments of wrapper_mm_DL.m, wrapper_mm_solver.m, SMALL_rlsdla.m & SMALL_AudioDenoise_DL_test_KSVDvsSPAMS.m. Moved wrapper_ALPS_toolbox from toolboxes to toolboxes/alps and added some extra help comments.
author Aris Gretsistas <aris.gretsistas@elec.qmul.ac.uk>
date Fri, 23 Mar 2012 20:48:25 +0000
parents 62f20b91d870
children
rev   line source
ivan@77 1 function thumbwrite(data,name,opts)
ivan@77 2
ivan@77 3
ivan@77 4 % Copyright 2008, Ewout van den Berg and Michael P. Friedlander
ivan@77 5 % http://www.cs.ubc.ca/labs/scl/sparco
ivan@77 6 % $Id: thumbwrite.m 1040 2008-06-26 20:29:02Z ewout78 $
ivan@77 7
ivan@77 8 %
ivan@77 9 % data Thumbnail data in range 0-1
ivan@77 10 % name Name of file (no extension)
ivan@77 11 % opts
ivan@77 12 % .thumbtype Type of image (png, eps, ps, ...)
ivan@77 13 % .thumbdir Output directory
ivan@77 14 %
ivan@77 15
ivan@77 16 [type,ext] = getFigureExt(opts.thumbtype);
ivan@77 17 data = round(data * 255) / 255;
ivan@77 18 imwrite(data,[opts.thumbpath,name,'.',ext],type);