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

Revision 415, 3.5 KB checked in by mattausch, 19 years ago (diff)
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
25Preprocessor {
26        type sampling
27#       type exact
28#       type vss
29}
30
31Unigraphics {
32                meshGrouping 1
33}
34
35KdTree {
36        sahUseFaces true
37        Termination {
38                minCost 2
39                maxDepth 18
40                maxCostRatio 0.9
41                ct_div_ci 0.5
42        }
43
44#       splitMethod spatialMedian
45        splitMethod SAH
46        splitBorder 0.01
47}
48
49MeshKdTree {
50        Termination {
51                minCost 4
52                maxDepth 18
53                maxCostRatio 0.9
54                ct_div_ci 0.5
55        }
56
57#       splitMethod spatialMedian
58        splitMethod SAH
59        splitBorder 0.01
60}
61
62
63Sampling {
64        totalSamples    1000000
65        samplesPerPass  3
66}
67
68ViewCells {
69        #hierarchy kdTree
70        hierarchy vspTree
71        hierarchy bspTree
72        # hierarchy sceneDependent
73       
74        height 5.0
75        maxViewCells 0
76       
77       
78        PostProcessing {
79                minPvsDif 100
80                minPvs 10
81                maxPvs 150
82                samples 100000
83        }
84
85       
86#       filename ../data/atlanta/atlanta_viewcells_large.x3d
87        filename ../data/vienna/viewcells-25-sel.x3d
88#       filename ../data/vienna/viewcells-25.x3d
89#       filename ../data/vienna/viewcells-large-sel.x3d
90}
91
92BspTree {
93        Construction {
94                input fromRays
95        #       input fromViewCells
96        #       input fromSceneGeometry
97                samples 100000
98                sideTolerance 0.005
99        }
100
101
102        # random polygon       = 1
103        # axis aligned         = 2
104        # least splits         = 4
105        # balanced polygons    = 8
106        # balanced view cells  = 16
107        # largest polygon area = 32
108        # vertical axis        = 64
109        # blocked rays         = 128
110        # least ray splits     = 256
111        # balanced rays        = 512
112        # pvs                  = 1024
113
114        # least splits + balanced polygons
115        #splitPlaneStrategy 12
116       
117        #axis aligned + vertical axis
118        #splitPlaneStrategy 66
119       
120        # axis aligned + balanced view cells
121        # splitPlaneStrategy 18
122       
123        # largest polygon area
124        #splitPlaneStrategy 32
125       
126        # axus aligned + balanced polygons
127        #splitPlaneStrategy 72
128       
129        # axis aligned + blocked rays
130        #splitPlaneStrategy 130
131       
132        #splitPlaneStrategy 384
133        #splitPlaneStrategy 130
134       
135        splitPlaneStrategy 8
136       
137        maxPolyCandidates 50
138        maxRayCandidates 50
139       
140        Termination {
141                # parameters used for autopartition
142                maxRays 200
143                maxPolygons -1
144                maxDepth 40
145                minPvs 35
146                minArea 0.01
147                maxRayContribution 0.005
148                #maxAccRayLength 100
149               
150                # axis aligned splits
151                AxisAligned {
152                        maxPolys 5000
153                        maxRays 500
154                        maxObjects 10
155                        maxCostRatio 0.9
156                        ct_div_ci 0.5
157                }
158        }
159       
160        AxisAligned {
161                splitBorder 0.01
162        }
163       
164       
165        Visualization {
166                # x3d visualization of the split planes
167                exportSplits true
168                # how much samples should be used in visualization
169                samples 20000
170        }
171}
172
173Simulation {
174        objRenderCost 1.0
175        vcOverhead 1.0
176        moveSpeed 1.0
177}
178
179VssTree {
180        epsilon         1e-6
181
182        maxDepth        40
183        minPvs          1
184        minRays         50
185        minSize         0.00001
186        maxCostRatio    0.95
187        maxRayContribution 0.05
188       
189        maxTotalMemory  400
190        maxStaticMemory 20
191
192        splitType regular
193#       splitType heuristics
194
195        numberOfEndPointDomains 10000
196        ct_div_ci       0.0
197        randomize       false
198
199        refDirBoxMaxSize        0.1
200}
201
202VspKdTree {
203        epsilon         1e-6
204
205        Construction {
206                samples 100000
207        }
208       
209        Termination {
210                maxDepth        40
211                minPvs          1
212                minRays         50
213                minSize         0.00001
214                maxCostRatio    0.95
215                maxRayContribution 0.05
216        }
217       
218        maxTotalMemory  400
219        maxStaticMemory 20
220
221        splitType regular
222
223        numberOfEndPointDomains 10000
224        ct_div_ci       0.0
225}
Note: See TracBrowser for help on using the repository browser.