SCM Repository
[diderot] / branches / pure-cfg / test / vr-kcomp.diderot |
View of /branches/pure-cfg/test/vr-kcomp.diderot
Parent Directory
|
Revision Log
Revision 776 -
(download)
(annotate)
Thu Apr 7 21:50:30 2011 UTC (11 years, 2 months ago) by glk
File size: 2989 byte(s)
Thu Apr 7 21:50:30 2011 UTC (11 years, 2 months ago) by glk
File size: 2989 byte(s)
camera tweaks, and more consistent use of normalize
vec3 camEye = [25.0, 10.0, 8.0]; vec3 camAt = [0.0, 0.0, 0.0]; vec3 camUp = [0.0, 0.0, 1.0]; real camNear = -1.0; real camFar = 1.0; real camFOV = 5.0; int imgResU = 200; int imgResV = 200; real rayStep = 0.01; real valOpacMin = 0.05; // highest value with opacity 0.0 real valOpacMax = 0.06; // lowest value with opacity 1.0 real camDist = |camAt - camEye|; real camVspNear = camNear + camDist; real camVspFar = camFar + camDist; vec3 camN = normalize(camAt - camEye); vec3 camU = normalize(camN × camUp); vec3 camV = camN × camU; real camVmax = tan(camFOV*3.1415926536/360.0)*camDist; real camUmax = camVmax*real(imgResU)/real(imgResV); vec3 lightVspDir = [0.9, -1.0, -2.5]; vec3 lightDir = normalize(lightVspDir[0]*camU + lightVspDir[1]*camV + lightVspDir[2]*camN); real phongKa = 0.05; real phongKd = 0.80; real phongKs = 0.20; real phongSp = 30.0; image(3)[] img = load ("../data/vox1-9.nrrd"); field#1(3)[] Fc1 = img ⊛ ctmr; field#1(3)[] Fc0 = img ⊛ c1tent; strand RayCast (int ui, int vi) { real rayU = lerp(-camUmax, camUmax, -0.5, real(ui), real(imgResU)-0.5); real rayV = lerp(-camVmax, camVmax, -0.5, real(vi), real(imgResV)-0.5); vec3 rayVec = (camDist*camN + rayU*camU + rayV*camV)/camDist; vec3 rayDir = normalize(rayVec); real rayN = camVspNear; // ########## BEGIN per-ray initialization real transp = 1.0; real gray = 0.0; int myui = ui; int myvi = vi; output vec4 rgba = [0.0, 0.0, 0.0, 0.0]; // ########## END per-ray initialization update { vec3 rayPos = camEye + rayN*rayVec; if (inside (rayPos,Fc1)) { // ########## BEGIN per-sample code real val = 0.0; vec3 grad = [0.0,0.0,0.0]; // HEY (scoping BUG): the strand parameters (e.g. ui, vi) can't // appear in conditionals if (myui + myvi < imgResU) { val = Fc0@rayPos; grad = ∇Fc0@rayPos; } else { val = Fc1@rayPos; grad = ∇Fc1@rayPos; } vec3 norm = normalize(-grad); if (val > valOpacMin) { // we have some opacity real opac = min(1.0, lerp(0.0, 1.0, valOpacMin, val, valOpacMax)); real ld = lightDir • norm; real mat = ( phongKa + phongKd*(ld if ld > 0.0 else 0.0) + phongKs*(pow(ld, phongSp) if ld > 0.0 else 0.0)); gray = gray + transp*opac*mat; transp = transp*(1.0 - opac); } // ########## END per-sample code } if (transp < 0.01) { // early ray termination rgba = [gray, gray, gray, 1.0]; stabilize; } if (rayN > camVspFar) { rgba = [gray, gray, gray, 1.0-transp]; stabilize; } rayN = rayN + rayStep; } /* render: output maxval */ } initially [ RayCast(ui, vi) | vi in 0..(imgResV-1), ui in 0..(imgResU-1) ];
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |