Mercurial > hg > smallbox
comparison Problems/private/thumbwrite.m @ 51:217a33ac374e
(none)
author | idamnjanovic |
---|---|
date | Mon, 14 Mar 2011 16:52:27 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
50:d5155eaa3f68 | 51:217a33ac374e |
---|---|
1 function thumbwrite(data,name,opts) | |
2 | |
3 | |
4 % Copyright 2008, Ewout van den Berg and Michael P. Friedlander | |
5 % http://www.cs.ubc.ca/labs/scl/sparco | |
6 % $Id: thumbwrite.m 1040 2008-06-26 20:29:02Z ewout78 $ | |
7 | |
8 % | |
9 % data Thumbnail data in range 0-1 | |
10 % name Name of file (no extension) | |
11 % opts | |
12 % .thumbtype Type of image (png, eps, ps, ...) | |
13 % .thumbdir Output directory | |
14 % | |
15 | |
16 [type,ext] = getFigureExt(opts.thumbtype); | |
17 data = round(data * 255) / 255; | |
18 imwrite(data,[opts.thumbpath,name,'.',ext],type); |