Changeset 2381


Ignore:
Timestamp:
05/16/07 11:59:26 (17 years ago)
Author:
mattausch
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/scripts/gi_final.env

    r2364 r2381  
    2020        detectEmptyViewSpace true 
    2121        loadMeshes false 
     22         
    2223        # internal raycaster 
    23         rayCastMethod 0   
     24        #rayCastMethod 0   
    2425        # intel raycaster 
    25         #rayCastMethod 1 
     26        rayCastMethod 1 
     27         
    2628        exportVisibility false 
    2729        applyVisibilityFilter false 
  • GTP/trunk/Lib/Vis/Preprocessing/scripts/gi_final.sh

    r2364 r2381  
    1818SCENE_PATH=../data/Arena 
    1919 
     20#SCENE=PompeiiOne 
     21#SCENE_PATH=../data/pompeii 
     22 
    2023#SCENE=soda 
    2124#SCENE_PATH=../data/soda 
    2225 
    23 ENVIRONMENT=gi_final2.env 
     26ENVIRONMENT=gi_final.env 
    2427LOG_PREFIX=../scripts/tests/gi/$SCENE 
    2528 
     
    2831SCENE_FILENAME=$SCENE_PATH/$SCENE.$EXT 
    2932 
    30 OBJ_WEIGHT=70 
     33OBJ_WEIGHT=20 
    3134 
    3235####################################################### 
     
    132135USE_HEUR=false 
    133136 
    134 METHOD=int-$USE_HEUR-$OBJ_WEIGHT-nosah 
     137METHOD=int-$USE_HEUR-$OBJ_WEIGHT 
    135138 
    136139echo "$SCENE $METHOD" 
     
    149152  -hierarchy_construction_min_avg_rays_per_object=0 \ 
    150153  -hierarchy_construction_max_avg_rays_per_object=0 \ 
    151   -bvh_use_sah=false \ 
     154  -bvh_use_sah=true \ 
    152155  -vsp_use_cost_heuristics=$USE_HEUR 
    153156 
     
    161164METHOD=seq-$NODES-$USE_HEUR-$OBJ_WEIGHT 
    162165  
    163 #echo "$SCENE $METHOD" 
    164 #$PROGRAM $ENVIRONMENT \ 
     166echo "$SCENE $METHOD" 
     167$PROGRAM $ENVIRONMENT \ 
    165168 -scene_filename=$SCENE_FILENAME \ 
    166169 -view_cells_evaluation_stats_prefix=$LOG_PREFIX-$METHOD \ 
     
    176179 -bvh_term_max_leaves=$NODES 
    177180 
    178 #sh movefiles.sh $LOG_PREFIX-$METHOD 
     181sh movefiles.sh $LOG_PREFIX-$METHOD 
    179182 
  • GTP/trunk/Lib/Vis/Preprocessing/src/TestPreprocessor.vcproj

    r2353 r2381  
    231231                                GenerateDebugInformation="FALSE" 
    232232                                SubSystem="1" 
     233                                LargeAddressAware="2" 
    233234                                OptimizeReferences="2" 
    234235                                EnableCOMDATFolding="2" 
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp

    r2353 r2381  
    952952 
    953953        VssRayContainer postProcessSamples; 
    954         cout << "casting " << mPostProcessSamples << " post processing samples ... "; 
     954        cout << "casting " << mPostProcessSamples << " post process samples ..." << endl; 
    955955         
    956956        CastPassSamples(mPostProcessSamples, mStrategies, postProcessSamples); 
    957957 
    958         cout << "finished" << endl; 
     958        cout << "finished post process sampling" << endl; 
    959959        cout << "starting post processing and visualization" << endl; 
    960960 
Note: See TracChangeset for help on using the changeset viewer.