SCM Repository
[diderot] / branches / pure-cfg / test / zslice1.diderot |
View of /branches/pure-cfg/test/zslice1.diderot
Parent Directory
|
Revision Log
Revision 608 -
(download)
(annotate)
Fri Mar 11 22:38:23 2011 UTC (9 years, 11 months ago) by glk
File size: 791 byte(s)
Fri Mar 11 22:38:23 2011 UTC (9 years, 11 months ago) by glk
File size: 791 byte(s)
correcting affine transform to index space of dataset
// zslice1.diderot string dataFile = "../data/zimg.nrrd"; int dataSize = 9; int imgSize = 200; vec3 orig = [0.0, 0.0, 4.0]; vec3 cVec = [0.0, 1.0, 0.0]; vec3 rVec = [1.0, 0.0, 0.0]; image(3)[] img = load (dataFile); field#2(3)[] F = img ⊛ bspln3; strand RayCast (int row, int col) { real rr = real(dataSize)*(real(row)+0.5)/real(imgSize) - 0.5; real cc = real(dataSize)*(real(col)+0.5)/real(imgSize) - 0.5; vec3 pos = orig + rr*rVec + cc*cVec; output real maxval = -∞; update { // HEY region for this should be exactly centered in the image if (inside (pos,F)) { maxval = 1.0; } if (1 > 0) stabilize; } /* render: output maxval */ } initially [ RayCast(r, c) | r in 0..(imgSize-1), c in 0..(imgSize-1) ];
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |