source: trunk/VUT/GtpVisibilityPreprocessor/scripts/default.env @ 335

Revision 335, 2.4 KB checked in by mattausch, 19 years ago (diff)

reprogrammed splitplane evaluation. updated default.env

Line 
1#############################################################################
2# ERS default configuration file
3# Jiri Bittner 2003
4#############################################################################
5
6Scene {
7
8#       filename glasgow1.x3d
9#       filename vienna.x3d
10#       filename ../data/vienna/vienna-simple.x3d
11        filename ../data/vienna/vienna-buildings.x3d
12#       filename ../data/vienna/viewcells-25-sel.x3d
13#       filename ../data/atlanta/atlanta2.x3d
14#       filename ../data/soda/soda.dat
15#       filename ../data/soda/soda5.dat
16}
17
18Limits {
19
20       threshold        1e-6
21       small            1e-6
22       infinity         1e9
23}
24
25Unigraphics {
26                meshGrouping 1
27}
28
29KdTree {
30        sahUseFaces true
31        Termination {
32                minCost 2
33                maxDepth 18
34                maxCostRatio 0.9
35                ct_div_ci 0.5
36        }
37
38#       splitMethod spatialMedian
39        splitMethod SAH
40        splitBorder 0.01
41}
42
43MeshKdTree {
44        Termination {
45                minCost 4
46                maxDepth 18
47                maxCostRatio 0.9
48                ct_div_ci 0.5
49        }
50
51#       splitMethod spatialMedian
52        splitMethod SAH
53        splitBorder 0.01
54}
55
56
57Sampling {
58        totalSamples    1000000
59        samplesPerPass  20
60}
61
62ViewCells {
63        #hierarchy kdTree
64        hierarchy bspTree
65        # hierarchy sceneDependent
66       
67        height 5.0
68        maxViewCells 0
69       
70#       filename ../data/atlanta/atlanta_viewcells_large.x3d
71        filename ../data/vienna/viewcells-25-sel.x3d
72#       filename ../data/vienna/viewcells-25.x3d
73#       filename ../data/vienna/viewcells-large-sel.x3d
74}
75
76BspTree {
77        Construction {
78                input fromRays
79        #       input fromViewCells
80        #       input fromSceneGeometry
81                samples 200000
82                sideTolerance 0.002
83        }
84
85
86        # random polygon       = 1
87        # axis aligned         = 2
88        # least splits         = 4
89        # balanced polygons    = 8
90        # balanced view cells  = 16
91        # largest polygon area = 32
92        # vertical axis        = 64
93        # blocked rays         = 128
94        # least ray splits     = 256
95        # balanced rays        = 512
96
97        # least splits + balanced polygons
98        #splitPlaneStrategy 12
99       
100        #axis aligned + vertical axis
101        #splitPlaneStrategy 66
102       
103        # axis aligned + balanced view cells
104        # splitPlaneStrategy 18
105       
106        # largest polygon area
107        #splitPlaneStrategy 32
108       
109        # axus aligned + balanced polygons
110        #splitPlaneStrategy 72
111       
112        # axis aligned + blocked rays
113        #splitPlaneStrategy 130
114       
115        splitPlaneStrategy 130
116       
117        maxCandidates 50
118       
119        Termination {
120                # autopartition
121                maxRays -1
122                maxPolygons 20
123                maxDepth 100
124               
125                #axis aligned split
126                maxPolysForAxisAligned 200
127                maxCostRatio 0.9
128                ct_div_ci 0.5
129        }
130       
131        #axis aligned split
132        splitBorder 0.01
133       
134        # if split polys are stored for visualization
135        storeSplitPolys false
136        # x3d visualization of the split planes
137        exportSplits true
138}
Note: See TracBrowser for help on using the repository browser.