Ignore:
Timestamp:
11/20/06 11:35:26 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1768 r1769  
    551551         
    552552        ///////////////// 
    553         //-- Finally, we do some visualization 
     553        //-- Show some visualizations 
    554554 
    555555        if (mShowVisualization) 
    556556        { 
     557                cout << "************************\n*********************\n"; 
     558                if (0) 
     559                { 
     560                        strategies.clear(); 
     561                        strategies.push_back(SamplingStrategy::VIEWCELL_BORDER_BASED_DISTRIBUTION); 
     562                } 
     563 
    557564                /////////////// 
    558565                //-- visualization rays, e.g., to show some samples in the scene 
     
    55015508        int leafOut; 
    55025509        Environment::GetSingleton()->GetIntValue("ViewCells.Visualization.maxOutput", leafOut); 
     5510 
     5511        const bool sortViewCells = false; 
     5512        const bool exportPvs = true; 
     5513        const bool exportRays = true; 
    55035514        const int raysOut = 100; 
    55045515 
    5505         ExportSingleViewCells(objects, leafOut, false, true, false, raysOut, ""); 
     5516        ExportSingleViewCells(objects,  
     5517                                                  leafOut,  
     5518                                                  sortViewCells,  
     5519                                                  exportPvs,  
     5520                                                  exportRays,  
     5521                                                  raysOut,  
     5522                                                  ""); 
    55065523} 
    55075524 
     
    59435960        strategies.push_back(SamplingStrategy::SPATIAL_BOX_BASED_DISTRIBUTION); 
    59445961        strategies.push_back(SamplingStrategy::REVERSE_OBJECT_BASED_DISTRIBUTION); 
    5945  
     5962//strategies.push_back(SamplingStrategy::VIEWCELL_BORDER_BASED_DISTRIBUTION); 
    59465963        cout << "reseting pvs ... "; 
    59475964                 
Note: See TracChangeset for help on using the changeset viewer.