1 | #include "SceneGraph.h"
|
---|
2 | #include "KdTree.h"
|
---|
3 | #include "RssPreprocessor.h"
|
---|
4 | #include "X3dExporter.h"
|
---|
5 | #include "Environment.h"
|
---|
6 | #include "MutualVisibility.h"
|
---|
7 | #include "Polygon3.h"
|
---|
8 | #include "ViewCell.h"
|
---|
9 | #include "VssRay.h"
|
---|
10 | #include "RssTree.h"
|
---|
11 | #include "ViewCellsManager.h"
|
---|
12 | #include "RenderSimulator.h"
|
---|
13 |
|
---|
14 | static bool useViewSpaceBox = false;
|
---|
15 | static bool use2dSampling = false;
|
---|
16 | static bool fromBoxVisibility = false;
|
---|
17 |
|
---|
18 |
|
---|
19 | RssPreprocessor::RssPreprocessor():
|
---|
20 | mPass(0),
|
---|
21 | mVssRays()
|
---|
22 | {
|
---|
23 | // this should increase coherence of the samples
|
---|
24 | environment->GetIntValue("RssPreprocessor.samplesPerPass", mSamplesPerPass);
|
---|
25 | environment->GetIntValue("RssPreprocessor.initialSamples", mInitialSamples);
|
---|
26 | environment->GetIntValue("RssPreprocessor.vssSamples", mRssSamples);
|
---|
27 | environment->GetIntValue("RssPreprocessor.vssSamplesPerPass", mRssSamplesPerPass);
|
---|
28 | environment->GetBoolValue("RssPreprocessor.useImportanceSampling", mUseImportanceSampling);
|
---|
29 | environment->GetIntValue("BspTree.Construction.samples", mBspConstructionSamples);
|
---|
30 |
|
---|
31 | environment->GetBoolValue("RssPreprocessor.Export.pvs", mExportPvs);
|
---|
32 | environment->GetBoolValue("RssPreprocessor.Export.rssTree", mExportRssTree);
|
---|
33 | environment->GetBoolValue("RssPreprocessor.Export.rays", mExportRays);
|
---|
34 | environment->GetIntValue("RssPreprocessor.Export.numRays", mExportNumRays);
|
---|
35 | environment->GetBoolValue("RssPreprocessor.useViewcells", mUseViewcells);
|
---|
36 |
|
---|
37 | environment->GetBoolValue("RssPreprocessor.updateSubdivision", mUpdateSubdivision);
|
---|
38 |
|
---|
39 | mStats.open("stats.log");
|
---|
40 | }
|
---|
41 |
|
---|
42 | RssPreprocessor::~RssPreprocessor()
|
---|
43 | {
|
---|
44 | CLEAR_CONTAINER(mVssRays);
|
---|
45 | }
|
---|
46 |
|
---|
47 | void
|
---|
48 | RssPreprocessor::SetupRay(Ray &ray,
|
---|
49 | const Vector3 &point,
|
---|
50 | const Vector3 &direction
|
---|
51 | )
|
---|
52 | {
|
---|
53 | ray.intersections.clear();
|
---|
54 | // do not store anything else then intersections at the ray
|
---|
55 | ray.Init(point, direction, Ray::LOCAL_RAY);
|
---|
56 | }
|
---|
57 |
|
---|
58 | int
|
---|
59 | RssPreprocessor::CastRay(
|
---|
60 | Vector3 &viewPoint,
|
---|
61 | Vector3 &direction,
|
---|
62 | VssRayContainer &vssRays
|
---|
63 | )
|
---|
64 | {
|
---|
65 | int hits = 0;
|
---|
66 | static Ray ray;
|
---|
67 | AxisAlignedBox3 box = mKdTree->GetBox();
|
---|
68 |
|
---|
69 | AxisAlignedBox3 sbox = box;
|
---|
70 | sbox.Enlarge(Vector3(-Limits::Small));
|
---|
71 | if (!sbox.IsInside(viewPoint))
|
---|
72 | return 0;
|
---|
73 |
|
---|
74 | SetupRay(ray, viewPoint, direction);
|
---|
75 | // cast ray to KD tree to find intersection with other objects
|
---|
76 | Intersectable *objectA, *objectB;
|
---|
77 | Vector3 pointA, pointB;
|
---|
78 | float bsize = Magnitude(box.Size());
|
---|
79 |
|
---|
80 | if (mKdTree->CastRay(ray)) {
|
---|
81 | objectA = ray.intersections[0].mObject;
|
---|
82 | pointA = ray.Extrap(ray.intersections[0].mT);
|
---|
83 | } else {
|
---|
84 | objectA = NULL;
|
---|
85 | // compute intersection with the scene bounding box
|
---|
86 | float tmin, tmax;
|
---|
87 | box.ComputeMinMaxT(ray, &tmin, &tmax);
|
---|
88 | if (tmax > bsize) {
|
---|
89 | //cerr<<"Warning: tmax > box size tmax="<<tmax<<" tmin="<<tmin<<" size="<<bsize<<endl;
|
---|
90 | //cerr<<"ray"<<ray<<endl;
|
---|
91 | }
|
---|
92 | pointA = ray.Extrap(tmax);
|
---|
93 | }
|
---|
94 |
|
---|
95 | bool detectEmptyViewSpace = true;
|
---|
96 |
|
---|
97 | if (detectEmptyViewSpace) {
|
---|
98 | SetupRay(ray, pointA, -direction);
|
---|
99 | } else
|
---|
100 | SetupRay(ray, viewPoint, -direction);
|
---|
101 |
|
---|
102 |
|
---|
103 | if (mKdTree->CastRay(ray)) {
|
---|
104 | objectB = ray.intersections[0].mObject;
|
---|
105 | pointB = ray.Extrap(ray.intersections[0].mT);
|
---|
106 | } else {
|
---|
107 | objectB = NULL;
|
---|
108 | float tmin, tmax;
|
---|
109 | box.ComputeMinMaxT(ray, &tmin, &tmax);
|
---|
110 | if (tmax > bsize) {
|
---|
111 | //cerr<<"Warning: tmax > box size tmax="<<tmax<<" tmin="<<tmin<<" size="<<bsize<<endl;
|
---|
112 | //cerr<<"ray"<<ray<<endl;
|
---|
113 | }
|
---|
114 | pointB = ray.Extrap(tmax);
|
---|
115 | }
|
---|
116 |
|
---|
117 | VssRay *vssRay = NULL;
|
---|
118 |
|
---|
119 | bool validSample = true;
|
---|
120 | if (detectEmptyViewSpace) {
|
---|
121 | // check if the viewpoint lies on the line segment AB
|
---|
122 | if (Distance(pointA, pointB) <
|
---|
123 | Distance(viewPoint, pointA) + Distance(viewPoint, pointB) - Limits::Small) {
|
---|
124 | validSample = false;
|
---|
125 | }
|
---|
126 | }
|
---|
127 |
|
---|
128 | if (validSample) {
|
---|
129 | if (objectA) {
|
---|
130 | vssRay = new VssRay(pointB,
|
---|
131 | pointA,
|
---|
132 | objectB,
|
---|
133 | objectA,
|
---|
134 | mPass
|
---|
135 | );
|
---|
136 | vssRays.push_back(vssRay);
|
---|
137 | hits ++;
|
---|
138 | }
|
---|
139 |
|
---|
140 | if (objectB) {
|
---|
141 | vssRay = new VssRay(pointA,
|
---|
142 | pointB,
|
---|
143 | objectA,
|
---|
144 | objectB,
|
---|
145 | mPass
|
---|
146 | );
|
---|
147 | vssRays.push_back(vssRay);
|
---|
148 | hits ++;
|
---|
149 | }
|
---|
150 | }
|
---|
151 |
|
---|
152 | return hits;
|
---|
153 | }
|
---|
154 |
|
---|
155 |
|
---|
156 | Vector3
|
---|
157 | RssPreprocessor::GetViewpoint(AxisAlignedBox3 *viewSpaceBox)
|
---|
158 | {
|
---|
159 | AxisAlignedBox3 box;
|
---|
160 |
|
---|
161 | if (viewSpaceBox)
|
---|
162 | box =*viewSpaceBox;
|
---|
163 | else
|
---|
164 | box = mKdTree->GetBox();
|
---|
165 |
|
---|
166 | // shrink the box in the y direction
|
---|
167 | return box.GetRandomPoint();
|
---|
168 | }
|
---|
169 |
|
---|
170 | Vector3
|
---|
171 | RssPreprocessor::GetDirection(const Vector3 &viewpoint,
|
---|
172 | AxisAlignedBox3 *viewSpaceBox
|
---|
173 | )
|
---|
174 | {
|
---|
175 | Vector3 point;
|
---|
176 | if (!use2dSampling) {
|
---|
177 | Vector3 normal;
|
---|
178 | int i = RandomValue(0, mObjects.size()-1);
|
---|
179 | Intersectable *object = mObjects[i];
|
---|
180 | object->GetRandomSurfacePoint(point, normal);
|
---|
181 | } else {
|
---|
182 | AxisAlignedBox3 box;
|
---|
183 |
|
---|
184 | if (viewSpaceBox)
|
---|
185 | box =*viewSpaceBox;
|
---|
186 | else
|
---|
187 | box = mKdTree->GetBox();
|
---|
188 |
|
---|
189 | point = box.GetRandomPoint();
|
---|
190 | point.y = viewpoint.y;
|
---|
191 | }
|
---|
192 |
|
---|
193 | return point - viewpoint;
|
---|
194 | }
|
---|
195 |
|
---|
196 | int
|
---|
197 | RssPreprocessor::GenerateImportanceRays(RssTree *rssTree,
|
---|
198 | const int desiredSamples,
|
---|
199 | SimpleRayContainer &rays
|
---|
200 | )
|
---|
201 | {
|
---|
202 | int num;
|
---|
203 |
|
---|
204 |
|
---|
205 |
|
---|
206 | float avgPvsSize;
|
---|
207 | float avgRayContribution;
|
---|
208 | float avgPvsEntropy;
|
---|
209 | float avgRayLengthEntropy;
|
---|
210 | float avgImportance;
|
---|
211 | float avgRays;
|
---|
212 | rssTree->GetTreeStatistics(
|
---|
213 | avgPvsSize,
|
---|
214 | avgRays,
|
---|
215 | avgRayContribution,
|
---|
216 | avgPvsEntropy,
|
---|
217 | avgRayLengthEntropy,
|
---|
218 | avgImportance);
|
---|
219 |
|
---|
220 | cout<<
|
---|
221 | "#RSS_AVG_PVS_SIZE\n"<<avgPvsSize<<endl<<
|
---|
222 | "#RSS_AVG_RAYS\n"<<avgRays<<endl<<
|
---|
223 | "#RSS_AVG_RAY_CONTRIB\n"<<avgRayContribution<<endl<<
|
---|
224 | "#RSS_AVG_PVS_ENTROPY\n"<<avgPvsEntropy<<endl<<
|
---|
225 | "#RSS_AVG_RAY_LENGTH_ENTROPY\n"<<avgRayLengthEntropy<<endl<<
|
---|
226 | "#RSS_AVG_IMPORTANCE\n"<<avgImportance<<endl;
|
---|
227 |
|
---|
228 | if (0) {
|
---|
229 | float p = desiredSamples/(float)(avgRayContribution*rssTree->stat.Leaves());
|
---|
230 | num = rssTree->GenerateRays(p, rays);
|
---|
231 | } else {
|
---|
232 | int leaves = rssTree->stat.Leaves()/1;
|
---|
233 | num = rssTree->GenerateRays(desiredSamples, leaves, rays);
|
---|
234 | }
|
---|
235 |
|
---|
236 | cout<<"Generated "<<num<<" rays."<<endl;
|
---|
237 |
|
---|
238 | return num;
|
---|
239 | }
|
---|
240 |
|
---|
241 |
|
---|
242 | bool
|
---|
243 | RssPreprocessor::ExportRays(const char *filename,
|
---|
244 | const VssRayContainer &vssRays,
|
---|
245 | const int number
|
---|
246 | )
|
---|
247 | {
|
---|
248 | cout<<"Exporting vss rays..."<<endl<<flush;
|
---|
249 |
|
---|
250 | float prob = number/(float)vssRays.size();
|
---|
251 |
|
---|
252 |
|
---|
253 | Exporter *exporter = NULL;
|
---|
254 | exporter = Exporter::GetExporter(filename);
|
---|
255 | // exporter->SetWireframe();
|
---|
256 | // exporter->ExportKdTree(*mKdTree);
|
---|
257 | exporter->SetFilled();
|
---|
258 | exporter->ExportScene(mSceneGraph->mRoot);
|
---|
259 | exporter->SetWireframe();
|
---|
260 |
|
---|
261 | if (mViewSpaceBox) {
|
---|
262 | exporter->SetForcedMaterial(RgbColor(1,0,1));
|
---|
263 | exporter->ExportBox(*mViewSpaceBox);
|
---|
264 | exporter->ResetForcedMaterial();
|
---|
265 | }
|
---|
266 |
|
---|
267 | VssRayContainer rays; for (int i=0; i < vssRays.size(); i++)
|
---|
268 | if (RandomValue(0,1) < prob)
|
---|
269 | rays.push_back(vssRays[i]);
|
---|
270 |
|
---|
271 | exporter->ExportRays(rays, RgbColor(1, 0, 0));
|
---|
272 |
|
---|
273 | delete exporter;
|
---|
274 |
|
---|
275 | cout<<"done."<<endl<<flush;
|
---|
276 |
|
---|
277 | return true;
|
---|
278 | }
|
---|
279 |
|
---|
280 |
|
---|
281 | bool
|
---|
282 | RssPreprocessor::ExportRssTree(char *filename,
|
---|
283 | RssTree *tree,
|
---|
284 | const Vector3 &dir
|
---|
285 | )
|
---|
286 | {
|
---|
287 | Exporter *exporter = Exporter::GetExporter(filename);
|
---|
288 | exporter->SetFilled();
|
---|
289 | exporter->ExportScene(mSceneGraph->mRoot);
|
---|
290 | // exporter->SetWireframe();
|
---|
291 | bool result = exporter->ExportRssTree2( *tree, dir );
|
---|
292 | delete exporter;
|
---|
293 | return result;
|
---|
294 | }
|
---|
295 |
|
---|
296 | bool
|
---|
297 | RssPreprocessor::ExportRssTreeLeaf(char *filename,
|
---|
298 | RssTree *tree,
|
---|
299 | RssTreeLeaf *leaf)
|
---|
300 | {
|
---|
301 | Exporter *exporter = NULL;
|
---|
302 | exporter = Exporter::GetExporter(filename);
|
---|
303 | exporter->SetWireframe();
|
---|
304 | exporter->ExportKdTree(*mKdTree);
|
---|
305 |
|
---|
306 | if (mViewSpaceBox) {
|
---|
307 | exporter->SetForcedMaterial(RgbColor(1,0,0));
|
---|
308 | exporter->ExportBox(*mViewSpaceBox);
|
---|
309 | exporter->ResetForcedMaterial();
|
---|
310 | }
|
---|
311 |
|
---|
312 | exporter->SetForcedMaterial(RgbColor(0,0,1));
|
---|
313 | exporter->ExportBox(tree->GetBBox(leaf));
|
---|
314 | exporter->ResetForcedMaterial();
|
---|
315 |
|
---|
316 | VssRayContainer rays[4];
|
---|
317 | for (int i=0; i < leaf->rays.size(); i++) {
|
---|
318 | int k = leaf->rays[i].GetRayClass();
|
---|
319 | rays[k].push_back(leaf->rays[i].mRay);
|
---|
320 | }
|
---|
321 |
|
---|
322 | // SOURCE RAY
|
---|
323 | exporter->ExportRays(rays[0], RgbColor(1, 0, 0));
|
---|
324 | // TERMINATION RAY
|
---|
325 | exporter->ExportRays(rays[1], RgbColor(1, 1, 1));
|
---|
326 | // PASSING_RAY
|
---|
327 | exporter->ExportRays(rays[2], RgbColor(1, 1, 0));
|
---|
328 | // CONTAINED_RAY
|
---|
329 | exporter->ExportRays(rays[3], RgbColor(0, 0, 1));
|
---|
330 |
|
---|
331 | delete exporter;
|
---|
332 | return true;
|
---|
333 | }
|
---|
334 |
|
---|
335 | void
|
---|
336 | RssPreprocessor::ExportRssTreeLeaves(RssTree *tree, const int number)
|
---|
337 | {
|
---|
338 | vector<RssTreeLeaf *> leaves;
|
---|
339 | tree->CollectLeaves(leaves);
|
---|
340 |
|
---|
341 | int num = 0;
|
---|
342 | int i;
|
---|
343 | float p = number / (float)leaves.size();
|
---|
344 | for (i=0; i < leaves.size(); i++) {
|
---|
345 | if (RandomValue(0,1) < p) {
|
---|
346 | char filename[64];
|
---|
347 | sprintf(filename, "rss-leaf-%04d.x3d", num);
|
---|
348 | ExportRssTreeLeaf(filename, tree, leaves[i]);
|
---|
349 | num++;
|
---|
350 | }
|
---|
351 | if (num >= number)
|
---|
352 | break;
|
---|
353 | }
|
---|
354 | }
|
---|
355 |
|
---|
356 |
|
---|
357 | float
|
---|
358 | RssPreprocessor::GetAvgPvsSize(RssTree *tree,
|
---|
359 | const vector<AxisAlignedBox3> &viewcells
|
---|
360 | )
|
---|
361 | {
|
---|
362 | vector<AxisAlignedBox3>::const_iterator it, it_end = viewcells.end();
|
---|
363 |
|
---|
364 | int sum = 0;
|
---|
365 | for (it = viewcells.begin(); it != it_end; ++ it)
|
---|
366 | sum += tree->GetPvsSize(*it);
|
---|
367 |
|
---|
368 | return sum/(float)viewcells.size();
|
---|
369 | }
|
---|
370 |
|
---|
371 |
|
---|
372 | void
|
---|
373 | RssPreprocessor::ExportPvs(char *filename,
|
---|
374 | RssTree *rssTree
|
---|
375 | )
|
---|
376 | {
|
---|
377 | ObjectContainer pvs;
|
---|
378 | if (rssTree->CollectRootPvs(pvs)) {
|
---|
379 | Exporter *exporter = Exporter::GetExporter(filename);
|
---|
380 | exporter->SetFilled();
|
---|
381 | exporter->ExportGeometry(pvs);
|
---|
382 | exporter->SetWireframe();
|
---|
383 | exporter->ExportBox(rssTree->bbox);
|
---|
384 | exporter->ExportViewpoint(rssTree->bbox.Center(), Vector3(1,0,0));
|
---|
385 | delete exporter;
|
---|
386 | }
|
---|
387 | }
|
---|
388 |
|
---|
389 | bool
|
---|
390 | RssPreprocessor::ComputeVisibility()
|
---|
391 | {
|
---|
392 | cout<<"Rss Preprocessor started\n"<<flush;
|
---|
393 | cout<<"Memory/ray "<<sizeof(VssRay)+sizeof(RssTreeNode::RayInfo)<<endl;
|
---|
394 | mSceneGraph->CollectObjects(&mObjects);
|
---|
395 |
|
---|
396 | long startTime = GetTime();
|
---|
397 |
|
---|
398 | int totalSamples = 0;
|
---|
399 |
|
---|
400 | /// Rays used for post processing and visualizations.
|
---|
401 | RayContainer storedRays;
|
---|
402 |
|
---|
403 | AxisAlignedBox3 *box = new AxisAlignedBox3(mKdTree->GetBox());
|
---|
404 |
|
---|
405 | if (fromBoxVisibility) {
|
---|
406 | float m = box->Min(1);
|
---|
407 | float bsize = box->Size(1);
|
---|
408 |
|
---|
409 | float size = 0.02f;
|
---|
410 | float s = 0.5f - size;
|
---|
411 | float olds = Magnitude(box->Size());
|
---|
412 | box->Enlarge(box->Size()*Vector3(-s));
|
---|
413 | // Vector3 translation = Vector3(-olds*0.2f, 0, 0);
|
---|
414 | Vector3 translation = Vector3(-0.05*olds, 0, 0);
|
---|
415 | box->SetMin(box->Min() + translation);
|
---|
416 | box->SetMax(box->Max() + translation);
|
---|
417 |
|
---|
418 | box->SetMin(1, m + bsize*0.1);
|
---|
419 | box->SetMax(1, m + bsize*0.6);
|
---|
420 |
|
---|
421 |
|
---|
422 | } else {
|
---|
423 |
|
---|
424 | // sample city like heights
|
---|
425 | float m = box->Min(1);
|
---|
426 | float bsize = box->Size(1);
|
---|
427 | box->SetMin(1, m + bsize*0.2);
|
---|
428 | box->SetMax(1, m + bsize*0.3);
|
---|
429 | }
|
---|
430 |
|
---|
431 | if (use2dSampling)
|
---|
432 | box->SetMax(1, box->Min(1));
|
---|
433 |
|
---|
434 | if (useViewSpaceBox)
|
---|
435 | mViewSpaceBox = box;
|
---|
436 | else
|
---|
437 | mViewSpaceBox = NULL;
|
---|
438 |
|
---|
439 |
|
---|
440 | RssTree *rssTree = NULL;
|
---|
441 |
|
---|
442 | while (totalSamples < mInitialSamples) {
|
---|
443 | int passContributingSamples = 0;
|
---|
444 | int passSampleContributions = 0;
|
---|
445 | int passSamples = 0;
|
---|
446 | int index = 0;
|
---|
447 |
|
---|
448 | int sampleContributions;
|
---|
449 |
|
---|
450 | int s = Min(mSamplesPerPass, mInitialSamples);
|
---|
451 | for (int k=0; k < s; k++) {
|
---|
452 |
|
---|
453 | Vector3 viewpoint = GetViewpoint(mViewSpaceBox);
|
---|
454 | Vector3 direction = GetDirection(viewpoint, mViewSpaceBox);
|
---|
455 |
|
---|
456 | sampleContributions = CastRay(viewpoint, direction, mVssRays);
|
---|
457 |
|
---|
458 |
|
---|
459 | //-- CORR matt: put block inside loop
|
---|
460 | if (sampleContributions) {
|
---|
461 | passContributingSamples ++;
|
---|
462 | passSampleContributions += sampleContributions;
|
---|
463 | }
|
---|
464 | passSamples++;
|
---|
465 | totalSamples++;
|
---|
466 | }
|
---|
467 |
|
---|
468 |
|
---|
469 | float avgRayContrib = (passContributingSamples > 0) ?
|
---|
470 | passSampleContributions/(float)passContributingSamples : 0;
|
---|
471 |
|
---|
472 | cout << "#Pass " << mPass << " : t = " << TimeDiff(startTime, GetTime())*1e-3 << "s" << endl;
|
---|
473 | cout << "#TotalSamples=" << totalSamples/1000
|
---|
474 | << "k #SampleContributions=" << passSampleContributions << " ("
|
---|
475 | << 100*passContributingSamples/(float)passSamples<<"%)"
|
---|
476 | << "avgcontrib=" << avgRayContrib << endl;
|
---|
477 |
|
---|
478 | mStats <<
|
---|
479 | "#Pass\n" <<mPass<<endl<<
|
---|
480 | "#Time\n" << TimeDiff(startTime, GetTime())*1e-3 << endl<<
|
---|
481 | "#TotalSamples\n" << totalSamples<< endl<<
|
---|
482 | "#SampleContributions\n" << passSampleContributions << endl <<
|
---|
483 | "#PContributingSamples\n"<<100*passContributingSamples/(float)passSamples<<endl <<
|
---|
484 | "#AvgRayContrib\n" << avgRayContrib << endl;
|
---|
485 |
|
---|
486 | mPass++;
|
---|
487 |
|
---|
488 | }
|
---|
489 |
|
---|
490 | cout << "#totalPvsSize=" << mKdTree->CollectLeafPvs() << endl;
|
---|
491 | cout << "#totalRayStackSize=" << mVssRays.size() << endl <<flush;
|
---|
492 |
|
---|
493 |
|
---|
494 | if (mExportRays) {
|
---|
495 | char filename[64];
|
---|
496 | sprintf(filename, "rss-rays-initial.x3d");
|
---|
497 | ExportRays(filename, mVssRays, mExportNumRays);
|
---|
498 | }
|
---|
499 |
|
---|
500 | if (mUseViewcells) {
|
---|
501 | // construct view cells
|
---|
502 | mViewCellsManager->Construct(mObjects, mVssRays, mViewSpaceBox);
|
---|
503 |
|
---|
504 | VssRayContainer selectedRays;
|
---|
505 | int desired = Max(
|
---|
506 | mViewCellsManager->GetPostProcessSamples(),
|
---|
507 | mViewCellsManager->GetVisualizationSamples());
|
---|
508 | float p = desired/(float)mVssRays.size();
|
---|
509 | // rssTree->CollectRays(storedRays, desired);
|
---|
510 | for (int i=0; i < mVssRays.size(); i++) {
|
---|
511 | if (Random(1.0f) < p)
|
---|
512 | selectedRays.push_back(mVssRays[i]);
|
---|
513 | }
|
---|
514 | //-- post process view cells
|
---|
515 | mViewCellsManager->PostProcess(mObjects, selectedRays);
|
---|
516 |
|
---|
517 | //-- several visualizations and statistics
|
---|
518 | mViewCellsManager->PrintStatistics(Debug);
|
---|
519 |
|
---|
520 | if (1)
|
---|
521 | mViewCellsManager->Visualize(mObjects, selectedRays);
|
---|
522 |
|
---|
523 | CLEAR_CONTAINER(storedRays);
|
---|
524 | }
|
---|
525 |
|
---|
526 |
|
---|
527 | rssTree = new RssTree;
|
---|
528 |
|
---|
529 | if (mUseImportanceSampling) {
|
---|
530 |
|
---|
531 | if (fromBoxVisibility)
|
---|
532 | rssTree->Construct(mVssRays, mViewSpaceBox);
|
---|
533 | else
|
---|
534 | rssTree->Construct(mVssRays, NULL);
|
---|
535 | cout<<"RssTree root PVS size = "<<rssTree->GetRootPvsSize()<<endl;
|
---|
536 |
|
---|
537 | if (mExportRssTree) {
|
---|
538 | ExportRssTree("rss-tree-100.x3d", rssTree, Vector3(1,0,0));
|
---|
539 | ExportRssTree("rss-tree-001.x3d", rssTree, Vector3(0,0,1));
|
---|
540 | ExportRssTree("rss-tree-101.x3d", rssTree, Vector3(1,0,1));
|
---|
541 | ExportRssTree("rss-tree-101m.x3d", rssTree, Vector3(-1,0,-1));
|
---|
542 | ExportRssTreeLeaves(rssTree, 10);
|
---|
543 | }
|
---|
544 |
|
---|
545 | if (mExportPvs) {
|
---|
546 | ExportPvs("rss-pvs-initial.x3d", rssTree);
|
---|
547 | }
|
---|
548 | }
|
---|
549 |
|
---|
550 | // viewcells->UpdatePVS(newVssRays);
|
---|
551 |
|
---|
552 | int rssPass = 0;
|
---|
553 | int rssSamples = 0;
|
---|
554 | while (1) {
|
---|
555 | int num = mRssSamplesPerPass;
|
---|
556 | SimpleRayContainer rays;
|
---|
557 | VssRayContainer vssRays;
|
---|
558 |
|
---|
559 | if (!mUseImportanceSampling) {
|
---|
560 | for (int j=0; j < num; j++) {
|
---|
561 | Vector3 viewpoint = GetViewpoint(mViewSpaceBox);
|
---|
562 | Vector3 direction = GetDirection(viewpoint, mViewSpaceBox);
|
---|
563 | rays.push_back(SimpleRay(viewpoint, direction));
|
---|
564 | }
|
---|
565 | } else {
|
---|
566 | num = GenerateImportanceRays(rssTree, num, rays);
|
---|
567 | }
|
---|
568 |
|
---|
569 |
|
---|
570 | for (int i=0; i < rays.size(); i++)
|
---|
571 | CastRay(rays[i].mOrigin, rays[i].mDirection, vssRays);
|
---|
572 |
|
---|
573 |
|
---|
574 | totalSamples+=num;
|
---|
575 | rssSamples+=num;
|
---|
576 |
|
---|
577 | mStats <<
|
---|
578 | "#Pass\n" <<mPass<<endl<<
|
---|
579 | "#RssPass\n" <<rssPass<<endl<<
|
---|
580 | "#Time\n" << TimeDiff(startTime, GetTime())*1e-3<<endl<<
|
---|
581 | "#TotalSamples\n" <<totalSamples<<endl<<
|
---|
582 | "#RssSamples\n" <<rssSamples<<endl;
|
---|
583 |
|
---|
584 | if (mUseViewcells) {
|
---|
585 |
|
---|
586 | /// compute view cell contribution of rays
|
---|
587 | mViewCellsManager->ComputeSampleContributions(vssRays);
|
---|
588 |
|
---|
589 | vssRays.PrintStatistics(mStats);
|
---|
590 | mViewCellsManager->PrintPvsStatistics(mStats);
|
---|
591 | }
|
---|
592 |
|
---|
593 | // add rays to the tree after the viewcells have been cast to have their contributions
|
---|
594 | // already when adding into the tree
|
---|
595 | // do not add those rays which have too low or no contribution....
|
---|
596 |
|
---|
597 | if (mUseImportanceSampling) {
|
---|
598 | rssTree->AddRays(vssRays);
|
---|
599 |
|
---|
600 | if (0) {
|
---|
601 | cout<<"############# Rss PVS STAT ##################\n";
|
---|
602 | cout<<"#AVG_RSS_PVS\n"<<rssTree->GetAvgPvsSize()<<endl;
|
---|
603 | cout<<"#RSS_ROOT_PVS\n"<<rssTree->GetRootPvsSize()<<endl;
|
---|
604 | }
|
---|
605 |
|
---|
606 | if (mUpdateSubdivision) {
|
---|
607 | int subdivided = rssTree->UpdateSubdivision();
|
---|
608 | cout<<"subdivided leafs = "<<subdivided<<endl;
|
---|
609 | cout<<"#total leaves = "<<rssTree->stat.Leaves()<<endl;
|
---|
610 | }
|
---|
611 | }
|
---|
612 |
|
---|
613 | if (mExportRays) {
|
---|
614 | char filename[64];
|
---|
615 | if (mUseImportanceSampling)
|
---|
616 | sprintf(filename, "rss-rays-i%04d.x3d", rssPass);
|
---|
617 | else
|
---|
618 | sprintf(filename, "rss-rays-%04d.x3d", rssPass);
|
---|
619 |
|
---|
620 | ExportRays(filename, vssRays, mExportNumRays);
|
---|
621 | }
|
---|
622 |
|
---|
623 |
|
---|
624 | if (mExportPvs) {
|
---|
625 | char filename[64];
|
---|
626 | sprintf(filename, "rss-pvs-%04d.x3d", rssPass);
|
---|
627 | ExportPvs(filename, rssTree);
|
---|
628 | }
|
---|
629 |
|
---|
630 | if (totalSamples >= mRssSamples + mInitialSamples)
|
---|
631 | break;
|
---|
632 |
|
---|
633 |
|
---|
634 | rssPass++;
|
---|
635 | mPass++;
|
---|
636 | }
|
---|
637 |
|
---|
638 | if (mUseViewcells) {
|
---|
639 |
|
---|
640 |
|
---|
641 | //-- render simulation after merge
|
---|
642 | cout << "\nevaluating bsp view cells render time after merge ... ";
|
---|
643 |
|
---|
644 | const SimulationStatistics ss = mViewCellsManager->SimulateRendering();
|
---|
645 |
|
---|
646 | cout << " finished" << endl;
|
---|
647 | cout << ss << endl;
|
---|
648 | Debug << ss << endl;
|
---|
649 |
|
---|
650 | }
|
---|
651 |
|
---|
652 | delete rssTree;
|
---|
653 |
|
---|
654 | return true;
|
---|
655 | }
|
---|
656 |
|
---|