source: GTP/trunk/Lib/Vis/Preprocessing/scripts/script_power_plant @ 886

Revision 886, 1.2 KB checked in by bittner, 18 years ago (diff)

Spatial visibility filter

  • Property svn:executable set to *
Line 
1#!/bin/sh
2PROGRAM=../src/release/Preprocessor.exe
3
4#SCENE=soda5
5SCENE=power_plant
6#SCENE=atlanta
7#SCENE=vienna
8
9LOG_PREFIX=../scripts/tests/egsr06/$SCENE-1204
10
11ENVIRONMENT=$SCENE.env
12
13################################################################
14#                          kdtree                              #
15################################################################
16
17#
18# only driving axis and breath-first split (similar to grid)
19#
20
21METHOD=kd
22
23echo "$SCENE $METHOD"
24
25$PROGRAM $ENVIRONMENT \
26-view_cells_type=vspBspTree \
27-view_cells_evaluation_stats_prefix=$LOG_PREFIX-$METHOD \
28-view_cells_merge_stats=$LOG_PREFIX-$METHOD-mergeStats.log \
29-vsp_bsp_subdivision_stats=$LOG_PREFIX-$METHOD-subdivisionStats.log \
30-view_cells_construction_samples=0 \
31-view_cells_post_process_merge=false \
32-vsp_bsp_split_only_driving_axis=true \
33-vsp_bsp_use_cost_heuristics=false \
34-vsp_bsp_max_poly_candidates=0 \
35-vsp_bsp_use_split_cost_queue=false \
36-vsp_bsp_node_queue_type=0 \
37-vsp_bsp_construction_samples=100 \
38-vsp_bsp_term_max_view_cells=50000 \
39-view_cells_prune_empty=true \
40-view_cells_filename=$LOG_PREFIX-$METHOD-viewCells.xml
41
42 mv debug.log $LOG_PREFIX-$METHOD-debug.log
Note: See TracBrowser for help on using the repository browser.