source: GTP/trunk/Lib/Vis/Preprocessing/src/SG08/run_test_arena_pixel @ 2641

Revision 2641, 2.1 KB checked in by bittner, 16 years ago (diff)

update of script at confusion

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3#COMMAND="./release/preprocessor.exe -preprocessor_quit_on_finish+"
4
5# NORMAL TEST
6COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish+ -preprocessor_use_gl_renderer- -preprocessor_evaluate_filter- -preprocessor_detect_empty_viewspace+ -total_samples=250000000  -samples_per_pass=1000000 -view_cells_use_kd_pvs+ -af_use_kd_pvs+ -kd_pvs_area=1e-5 -preprocessor_pvs_rendererror_samples=10000 -preprocessor_evaluatePixelError+ -samples_per_evaluation=10000000"
7
8SCENE=../data/Arena/arena-high-lods.obj
9#VIEWCELLS=../data/Arena/viewcells-5000.xml.gz
10VIEWCELLS=../data/Arena/arena-high-lods-57000-viewcells.xml.gz
11
12PREFIX=../work/plots/osp-arena-SG08a-PIXEL
13
14
15
16$COMMAND -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \
17 -rss_distributions=direction -view_cells_filter_max_size=1 \
18 -preprocessor_visibility_file=$PREFIX-r-reference-global.xml \
19 -preprocessor_stats=$PREFIX-r-reference-global.log \
20 -preprocessor_histogram_file=$PREFIX-r-reference-global.hlog
21
22$COMMAND -preprocessor=sampling -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \
23-preprocessor_visibility_file=$PREFIX-r-reference.xml \
24-view_cells_filter_max_size=1 -preprocessor_stats=$PREFIX-r-reference.log \
25-preprocessor_histogram_file=$PREFIX-r-reference.hlog
26
27
28
29
30$COMMAND -preprocessor=combined -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \
31-mutation_silhouette_prob=0.5 \
32-mutation_reverse_samples_distance=1.0 \
33-mutation_radius_origin=1.0 \
34-mutation_radius_termination=0.2 \
35-mutation_use_unsucc_count_importance+ \
36-mutation_use_pass_importance- \
37-mutation_buffer_size=2000000 \
38-rss_distributions=mutation+object_direction+spatial \
39-preprocessor_stats=$PREFIX-combined-m8-2.log
40
41
42$COMMAND -preprocessor=combined -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \
43-mutation_silhouette_prob=0.5 \
44-mutation_reverse_samples_distance=1.0 \
45-mutation_radius_origin=1.0 \
46-mutation_radius_termination=0.2 \
47-mutation_use_unsucc_count_importance+ \
48-mutation_use_pass_importance- \
49-mutation_buffer_size=2000000 \
50-preprocessor_evaluate_filter+ \
51-rss_distributions=mutation+object_direction+spatial \
52-preprocessor_stats=$PREFIX-combined-m8-2f.log
Note: See TracBrowser for help on using the repository browser.