Ignore:
Timestamp:
05/02/06 11:14:52 (18 years ago)
Author:
bittner
Message:

RenderSampler?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/RssPreprocessor.cpp

    r863 r871  
    512512        SimpleRayContainer rays; 
    513513 
    514         cout<<"Generating initial rays..."<<endl; 
     514        cout<<"Generating initial rays..."<<endl<<flush; 
     515 
    515516        GenerateRays(mInitialSamples/4, SPATIAL_BOX_BASED_DISTRIBUTION, rays); 
    516517        GenerateRays(mInitialSamples/4, OBJECT_BASED_DISTRIBUTION, rays); 
     
    518519        GenerateRays(mInitialSamples/4, OBJECT_DIRECTION_BASED_DISTRIBUTION, rays); 
    519520         
    520         cout<<"Casting initial rays..."<<endl; 
     521        cout<<"Casting initial rays..."<<endl<<flush; 
    521522        CastRays(rays, mVssRays); 
    522523 
     
    546547  if (mUseViewcells) { 
    547548 
    548         cout<<"Computing sample contributions..."<<endl; 
     549        cout<<"Computing sample contributions..."<<endl<<flush; 
    549550        // evaluate contributions of the intitial rays 
    550551        mViewCellsManager->ComputeSampleContributions(mVssRays, true, false); 
    551         cout<<"done.\n"; 
     552        cout<<"done.\n"<<flush; 
    552553         
    553554        mStats << 
     
    802803 
    803804 
    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   
    809808   
    810809  return true; 
Note: See TracChangeset for help on using the changeset viewer.