Changeset 2712


Ignore:
Timestamp:
05/26/08 12:27:08 (16 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/scripts/run_demo_vienna

    r2711 r2712  
    5252-preprocessor_detect_empty_viewspace+ \ 
    5353-preprocessor_use_vbos- \ 
    54 -preprocessor_ray_cast_method=3 \ 
     54-preprocessor_ray_cast_method=1 \ 
    5555-view_cells_random_viewpoint_list=$VIEWPOINTS \ 
    5656demo1.env 
  • GTP/trunk/Lib/Vis/Preprocessing/src/SamplingPreprocessor.cpp

    r2709 r2712  
    8484  HaltonSequence posHalton; 
    8585   
    86   int samples = 0; 
     86  mCurrentSamples = 0; 
    8787  int rssSamples = 0; 
    8888 
     
    9292  VssRayContainer vssRays; 
    9393 
    94   while (samples < mTotalSamples) { 
     94  while (mCurrentSamples < mTotalSamples) { 
    9595        for (int i=0; i < mSamplesPerPass;) { 
    9696           while (mSynchronize) 
     
    117117          for (; rays.size() < 16; ) { 
    118118                if (i%100000 == 0) { 
    119                   cout<<samples/1e6f<<"M rays, progress: "<<(samples*100.0f)/mTotalSamples<<" %   \r"; 
     119                  cout<<mCurrentSamples/1e6f<<"M rays, progress: "<<(mCurrentSamples * 100.0f)/mTotalSamples<<" %   \r"; 
    120120                } 
    121121                 
     
    131131                                                                 1.0f)); 
    132132                i++; 
    133                 samples++; 
     133                mCurrentSamples ++; 
    134134          } 
    135135           
     
    158158                } 
    159159           
    160           if (samples > mTotalSamples) 
     160          if (mCurrentSamples > mTotalSamples) 
    161161                break; 
    162162        } 
    163163 
    164164 
    165         if (samples - lastEvaluation >= mSamplesPerEvaluation) { 
     165        if (mCurrentSamples - lastEvaluation >= mSamplesPerEvaluation) { 
    166166          Real time = TimeDiff(startTime, GetTime()); 
    167167          mViewCellsManager->PrintPvsStatistics(mStats); 
     
    169169                "#Pass\n" <<mPass<<endl<< 
    170170                "#Time\n" << time <<endl<< 
    171                 "#TotalSamples\n" <<samples<<endl<< 
     171                "#TotalSamples\n" <<mCurrentSamples<<endl<< 
    172172                "#RssSamples\n" <<rssSamples<<endl; 
    173           lastEvaluation = samples; 
     173          lastEvaluation = mCurrentSamples; 
    174174           
    175175          if (renderer) { 
  • GTP/trunk/Lib/Vis/Preprocessing/src/TestPreprocessor05.vcproj

    r2686 r2712  
    157157                                LinkIncremental="1" 
    158158                                AdditionalLibraryDirectories="&quot;$(QTDIR)\lib&quot;;..\src\GL;&quot;..\lib05\$(ConfigurationName)&quot;;..\..\..\..\..\..\NonGTP\Boost\lib;..\..\..\..\..\..\NonGTP\Zlib\lib;..\..\..\..\..\..\NonGTP\Devil\lib;&quot;..\MultiLevelRayTracing\RTScene\$(ConfigurationName)&quot;;&quot;..\MultiLevelRayTracing\RTWorld\$(ConfigurationName)&quot;;&quot;QtInterface\$(ConfigurationName)&quot;;&quot;..\..\..\..\..\..\NonGTP\Xerces\xerces-c_2_8_0\lib&quot;;&quot;$(CG_LIB_PATH)&quot;" 
    159                                 GenerateDebugInformation="true" 
     159                                GenerateDebugInformation="false" 
    160160                                SubSystem="1" 
    161161                                LargeAddressAware="2" 
Note: See TracChangeset for help on using the changeset viewer.