Changeset 871 for GTP/trunk/Lib/Vis/Preprocessing/src/RssPreprocessor.cpp
- Timestamp:
- 05/02/06 11:14:52 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/RssPreprocessor.cpp
r863 r871 512 512 SimpleRayContainer rays; 513 513 514 cout<<"Generating initial rays..."<<endl; 514 cout<<"Generating initial rays..."<<endl<<flush; 515 515 516 GenerateRays(mInitialSamples/4, SPATIAL_BOX_BASED_DISTRIBUTION, rays); 516 517 GenerateRays(mInitialSamples/4, OBJECT_BASED_DISTRIBUTION, rays); … … 518 519 GenerateRays(mInitialSamples/4, OBJECT_DIRECTION_BASED_DISTRIBUTION, rays); 519 520 520 cout<<"Casting initial rays..."<<endl ;521 cout<<"Casting initial rays..."<<endl<<flush; 521 522 CastRays(rays, mVssRays); 522 523 … … 546 547 if (mUseViewcells) { 547 548 548 cout<<"Computing sample contributions..."<<endl ;549 cout<<"Computing sample contributions..."<<endl<<flush; 549 550 // evaluate contributions of the intitial rays 550 551 mViewCellsManager->ComputeSampleContributions(mVssRays, true, false); 551 cout<<"done.\n" ;552 cout<<"done.\n"<<flush; 552 553 553 554 mStats << … … 802 803 803 804 804 cout<<"Applying visibility filter..."; 805 mViewCellsManager->ApplyFilter(mKdTree, 806 0.05f, 807 0.05f); 808 cout<<"done."; 805 // mViewCellsManager->ExportViewCells("visibility.xml", 806 // true); 807 809 808 810 809 return true;
Note: See TracChangeset
for help on using the changeset viewer.