Mercurial > hg > octave-image
view testimio.m @ 59:8ae91f3e55a5 Octave-Forge-2004.02.12
Add some of the missing functions to the categorical index
author | pkienzle |
---|---|
date | Thu, 12 Feb 2004 07:49:40 +0000 |
parents | a068bb570f2f |
children | bc93bbbb9f60 |
line wrap: on
line source
## build image for image r/w tests x=linspace(-8,8,200); [xx,yy]=meshgrid(x,x); r=sqrt(xx.^2+yy.^2) + eps; map=colormap(hsv); A=sin(r)./r; minval = min(A(:)); maxval = max(A(:)); z = round ((A-minval)/(maxval - minval) * (rows(colormap) - 1)) + 1; Rw=Gw=Bw=z; Rw(:)=fix(255*map(z,1)); Gw(:)=fix(255*map(z,2)); Bw(:)=fix(255*map(z,3)); Aw=fix(255*(1-r/max(r(:)))); ## Fade to nothing at the corners if exist("jpgwrite") disp(">jpgwrite"); jpgwrite('test.jpg',Rw,Gw,Bw); stats=stat("test.jpg"); assert(stats.size,6423); disp(">jpgread"); [Rr,Gr,Br] = jpgread('test.jpg'); assert([max(Rw(:)-Rr(:))<30,max(Gw(:)-Gr(:))<30,max(Bw(:)-Br(:))<30]); unlink('test.jpg'); else disp(">jpgread ... not available"); disp(">jpgwrite ... not available"); endif if exist("pngwrite") disp(">pngwrite"); pngwrite('test.png',Rw,Gw,Bw,Aw); stats=stat("test.png"); assert(stats.size,24738); disp(">pngread"); [Rr,Gr,Br,Ar] = pngread('test.png'); assert(Rr,Rw); assert(Gr,Gw); assert(Br,Bw); assert(Ar,Aw); unlink('test.png'); else disp(">pngread ... not available"); disp(">pngwrite ... not available"); endif