Ignore:
Timestamp:
10/18/06 18:17:27 (18 years ago)
Author:
mattausch
Message:

worked on vsp osp methodsd

Location:
GTP/trunk/Lib/Vis/Preprocessing/scripts
Files:
2 edited

Legend:

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

    r1633 r1640  
    184184VspTree { 
    185185        Construction { 
    186                 samples 100000 
    187186        } 
    188187 
     
    225224         
    226225        Construction { 
    227                 # type 0 = sequential computation, type 1=interleaved 
    228                 type 2 
     226 
     227                samples 100000 
     228 
     229                # type 0 = sequential computation, 1 = interleaved, 2 = gradient 
     230                type 1 
     231 
    229232                # if the object space should be subdivided first (if false, the view space is subdivided first) 
    230233                startWithObjectSpace true 
     
    233236                # only for interleaved method 
    234237 
    235                 # only for interleaved method: the minimum depth for object space partition 
    236                 minDepthForOsp 7 
    237                 # the minimum depth for view space partition 
    238                 minDepthForVsp 7 
    239  
    240238                # if dirty split candidates are reevaluated  
    241                 repairQueue false 
     239                repairQueue true 
     240 
     241                # recompute split plane when "repairing" a candidate 
     242                recomputeSplitPlaneOnRepair false 
    242243 
    243244                ################################################### 
     
    249250                levels 4 
    250251 
    251                 # recompute split plane when "repairing" a candidate 
    252                 recomputeSplitPlaneOnRepair true 
     252                # minimal steps of same type: for interleaved, this is only valid for the first few splits 
     253                minStepsOfSameType 200 
    253254        } 
    254255 
  • GTP/trunk/Lib/Vis/Preprocessing/scripts/vsposp_typical.sh

    r1633 r1640  
    1212 
    1313SCENE=vsposp_typical 
     14#SCENE=vsposp_vienna 
    1415#SCENE=soda5 
    1516#SCENE=cube 
     
    2526 
    2627 
    27 METHOD=sequential 
     28METHOD=interleaved_full 
    2829echo "$SCENE $METHOD" 
    2930 
     
    3435-bvh_subdivision_stats=$LOG_PREFIX-$METHOD-bvh-subdivisionStats.log \ 
    3536-hierarchy_subdivision_stats=$LOG_PREFIX-$METHOD-hierarchy-subdivisionStats.log \ 
    36 -hierarchy_construction_start_with_osp=true 
     37-hierarchy_construction_type=1 \ 
     38-hierarchy_construction_recompute_split_on_repair=true 
    3739 
    3840mv debug.log $LOG_PREFIX-$METHOD-debug.log 
     
    4042mv final_object_partition.wrl $LOG_PREFIX-$METHOD-final_object_partition.wrl 
    4143mv final_view_cells.wrl $LOG_PREFIX-$METHOD-final_view_cells.wrl 
     44 
     45 
     46METHOD=interleaved 
     47echo "$SCENE $METHOD" 
     48 
     49$PROGRAM $ENVIRONMENT \ 
     50-view_cells_evaluation_stats_prefix=$LOG_PREFIX-$METHOD \ 
     51-view_cells_merge_stats=$LOG_PREFIX-$METHOD-mergeStats.log \ 
     52-vsp_subdivision_stats=$LOG_PREFIX-$METHOD-vsp-subdivisionStats.log \ 
     53-bvh_subdivision_stats=$LOG_PREFIX-$METHOD-bvh-subdivisionStats.log \ 
     54-hierarchy_subdivision_stats=$LOG_PREFIX-$METHOD-hierarchy-subdivisionStats.log \ 
     55-hierarchy_construction_type=1 \ 
     56-hierarchy_construction_recompute_split_on_repair=false 
     57 
     58mv debug.log $LOG_PREFIX-$METHOD-debug.log 
     59mv view_cells.wrl $LOG_PREFIX-$METHOD-view_cells.wrl 
     60mv final_object_partition.wrl $LOG_PREFIX-$METHOD-final_object_partition.wrl 
     61mv final_view_cells.wrl $LOG_PREFIX-$METHOD-final_view_cells.wrl 
     62 
     63 
     64METHOD=gradient 
     65echo "$SCENE $METHOD" 
     66 
     67$PROGRAM $ENVIRONMENT \ 
     68-view_cells_evaluation_stats_prefix=$LOG_PREFIX-$METHOD \ 
     69-view_cells_merge_stats=$LOG_PREFIX-$METHOD-mergeStats.log \ 
     70-vsp_subdivision_stats=$LOG_PREFIX-$METHOD-vsp-subdivisionStats.log \ 
     71-bvh_subdivision_stats=$LOG_PREFIX-$METHOD-bvh-subdivisionStats.log \ 
     72-hierarchy_subdivision_stats=$LOG_PREFIX-$METHOD-hierarchy-subdivisionStats.log \ 
     73-hierarchy_construction_type=2 \ 
     74-hierarchy_construction_recompute_split_on_repair=true 
     75 
     76mv debug.log $LOG_PREFIX-$METHOD-debug.log 
     77mv view_cells.wrl $LOG_PREFIX-$METHOD-view_cells.wrl 
     78mv final_object_partition.wrl $LOG_PREFIX-$METHOD-final_object_partition.wrl 
     79mv final_view_cells.wrl $LOG_PREFIX-$METHOD-final_view_cells.wrl 
Note: See TracChangeset for help on using the changeset viewer.