Ignore:
Timestamp:
09/25/06 18:54:21 (18 years ago)
Author:
mattausch
Message:

worked on guided visibility sampling

File:
1 edited

Legend:

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

    r1458 r1486  
    12001200   RegisterOption("VssPreprocessor.initialSamples", 
    12011201                                 optInt, 
    1202                                  "initial_samples=", 
     1202                                 "vss_initial_samples=", 
    12031203                                 "100000"); 
    12041204   
    12051205  RegisterOption("VssPreprocessor.testBeamSampling",  
    12061206                                optBool,  
    1207                                 "beam_sampling",  
     1207                                "vss_beam_sampling=",  
    12081208                                "false"); 
    12091209 
     
    12201220  RegisterOption("VssPreprocessor.samplesPerPass", 
    12211221                                 optInt, 
    1222                                  "samples_per_pass=", 
     1222                                 "vss_samples_per_pass=", 
    12231223                                 "100000"); 
    12241224 
     
    12431243          "false"); 
    12441244    
    1245  
    1246     RegisterOption("VssPreprocessor.useViewSpaceBox", 
     1245   RegisterOption("VssPreprocessor.useViewSpaceBox", 
    12471246          optBool, 
    12481247          "vss_use_viewspace_box=", 
    1249           "false"); 
     1248          "false");    
    12501249    
    12511250 
    1252   /************************************************************************************/ 
    1253   /*                         View cells related options                               */ 
    1254   /************************************************************************************/ 
     1251 
     1252   /************************************************************************************/ 
     1253   /*                         GvsPrerpocessor related options                          */ 
     1254   /************************************************************************************/ 
     1255 
     1256 
     1257   RegisterOption("GvsPreprocessor.totalSamples", 
     1258                 optInt, 
     1259                 "gvs_total_samples=", 
     1260                 "1000000"); 
     1261    
     1262   RegisterOption("GvsPreprocessor.samplesPerPass", 
     1263                 optInt, 
     1264                 "gvs_samples_per_pass=", 
     1265                 "100000"); 
     1266    
     1267   RegisterOption("GvsPreprocessor.initialSamples", 
     1268                 optInt, 
     1269                 "gvs_initial_samples=", 
     1270                 "256"); 
     1271 
     1272   RegisterOption("GvsPreprocessor.epsilon", 
     1273                 optFloat, 
     1274                 "gvs_epsilon", 
     1275                 "0.00001"); 
     1276 
     1277 
     1278  /***********************************************************************************/ 
     1279  /*                         View cells related options                              */ 
     1280  /***********************************************************************************/ 
    12551281 
    12561282 
     
    15131539 
    15141540 
    1515  
    1516         /************************************************************************************/ 
    1517         /*                         Bsp tree related options                                 */ 
    1518         /************************************************************************************/ 
     1541        /******************************************************************/ 
     1542        /*                    Bsp tree related options                    */ 
     1543        /******************************************************************/ 
    15191544 
    15201545 
     
    16651690        RegisterOption("Preprocessor.loadMeshes", 
    16661691                                        optBool, 
    1667                                         "loadMeshes=", 
     1692                                        "preprocessor_load_meshes=", 
    16681693                                        "true"); 
    16691694 
     
    17941819        RegisterOption("RssPreprocessor.initialSamples", 
    17951820                                                                        optInt, 
    1796                                                                         "initial_samples=", 
     1821                                                                        "rss_initial_samples=", 
    17971822                                                                        "100000"); 
    17981823 
Note: See TracChangeset for help on using the changeset viewer.