1 | #!/bin/sh |
---|
2 | |
---|
3 | #COMMAND="./release/preprocessor.exe -preprocessor_quit_on_finish+" |
---|
4 | COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish+ -preprocessor_use_gl_renderer- -preprocessor_evaluate_filter+" |
---|
5 | |
---|
6 | #SCENE="../data/vienna/vienna-buildings.x3d;../data/vienna/vienna-roofs.x3d;../data/vienna/vienna-roads.x3d" |
---|
7 | #VIEWCELLS=../data/vienna/vienna-viewcells-5000.xml |
---|
8 | |
---|
9 | #SCENE=../data/soda/soda5.dat |
---|
10 | #VIEWCELLS=../data/soda/soda5-viewcells-1000.xml |
---|
11 | #VIEWCELLS=../data/soda/soda5-viewcells-single.xml |
---|
12 | |
---|
13 | #SCENE=../data/PowerPlant/selection.plb |
---|
14 | #VIEWCELLS=../data/PowerPlant/power_plant_viewcells1.xml |
---|
15 | |
---|
16 | #SCENE=../data/soda/soda.dat |
---|
17 | #VIEWCELLS=../data/soda/soda5-viewcells-1000.xml |
---|
18 | #VIEWCELLS=../data/soda/soda-viewcells-5000.xml |
---|
19 | #VIEWCELLS=../data/soda/soda5-viewcells-single.xml |
---|
20 | |
---|
21 | #SCENE=../data/artificial/city.x3d |
---|
22 | #VIEWCELLS=../data/soda/soda5-viewcells2.xml |
---|
23 | #VIEWCELLS=../data/artificial/city-viewcells-1000.xml |
---|
24 | |
---|
25 | #SCENE=../data/test1/test2.x3d |
---|
26 | #VIEWCELLS=../data/test1/test-viewcells.xml |
---|
27 | |
---|
28 | SCENE=../data/vienna/vienna_cropped.obj |
---|
29 | VIEWCELLS=../data/vienna/vienna_cropped-gradient-viewcells.xml.gz |
---|
30 | |
---|
31 | PREFIX=../work/plots/osp2-1e5 |
---|
32 | |
---|
33 | #SCENE=../data/atlanta/atlanta2.x3d |
---|
34 | #PREFIX=../work/plots/atlanta2-rss9 |
---|
35 | |
---|
36 | |
---|
37 | |
---|
38 | $COMMAND -preprocessor=sampling -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \ |
---|
39 | -preprocessor_visibility_file=$PREFIX-r-reference.xml \ |
---|
40 | -view_cells_filter_max_size=1 -preprocessor_stats=$PREFIX-r-reference.log \ |
---|
41 | -preprocessor_histogram_file=$PREFIX-r-reference.hlog |
---|
42 | |
---|
43 | # $COMMAND -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \ |
---|
44 | # -rss_distributions=direction -view_cells_filter_max_size=1 \ |
---|
45 | # -preprocessor_visibility_file=$PREFIX-r-reference-global.xml \ |
---|
46 | # -preprocessor_stats=$PREFIX-r-reference-global.log \ |
---|
47 | # -preprocessor_histogram_file=$PREFIX-r-reference-global.hlog |
---|
48 | |
---|
49 | # $COMMAND -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \ |
---|
50 | # -rss_distributions=mutation+object_direction+spatial -view_cells_filter_max_size=1 \ |
---|
51 | # -preprocessor_visibility_file=$PREFIX-i-mixed-b1-n4c.xml \ |
---|
52 | # -preprocessor_stats=$PREFIX-i-mixed-b1-n4c.log \ |
---|
53 | # -preprocessor_histogram_file=$PREFIX-i-mixed-b1-n4c.hlog |
---|
54 | |
---|
55 | # $COMMAND -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \ |
---|
56 | # -rss_distributions=rss+object_direction+spatial+object+direction -view_cells_filter_max_size=1 \ |
---|
57 | # -preprocessor_stats=$PREFIX-i-mixed-b1-n2.log \ |
---|
58 | # -preprocessor_histogram_file=$PREFIX-i-mixed-b1-n2.hlog |
---|
59 | |
---|
60 | |
---|
61 | |
---|