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

Revision 469, 5.9 KB checked in by mattausch, 19 years ago (diff)

updated view cells, view cell manager. changed rendersimulator

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/vienna-buildings.x3d;../data/vienna/vienna-roofs.x3d
13#;../data/vienna/vienna-plane.x3d
14#       filename ../data/vienna/viewcells-25-sel.x3d
15#       filename ../data/atlanta/atlanta2.x3d
16#       filename ../data/soda/soda.dat
17        filename ../data/soda/soda5.dat
18}
19
20Preprocessor {
21#       type sampling
22        type vss
23#       type rss
24}
25
26VssPreprocessor {
27        samplesPerPass  100000
28        initialSamples 500000
29        vssSamples 200000
30        vssSamplesPerPass 100000
31        useImportanceSampling true
32}
33
34
35VssTree {
36        useRss    false
37        epsilon         1e-6
38
39        maxDepth        40
40        minPvs          30
41        minRays         1000
42        minSize         0.001
43        maxCostRatio    0.9
44        maxRayContribution 0.05
45       
46        maxTotalMemory  200
47        maxStaticMemory 20
48
49        splitType regular
50#       splitType heuristic
51#       splitType hybrid
52        splitUseOnlyDrivingAxis true
53
54        interleaveDirSplits     false
55    dirSplitDepth 40
56
57        numberOfEndPointDomains 10000
58        ct_div_ci       0.0
59        randomize       false
60
61        refDirBoxMaxSize        0.1
62}
63
64RssPreprocessor {
65        samplesPerPass  100000
66        initialSamples 400000
67        vssSamples 1000000
68        vssSamplesPerPass 100000
69        useImportanceSampling true
70}
71
72RssTree {
73        useRss    false
74        epsilon         1e-6
75
76        maxDepth        40
77        minPvs          5
78        minRays         30
79        minSize         0.001
80        maxCostRatio    0.9
81        maxRayContribution 0.1
82       
83        maxTotalMemory  200
84        maxStaticMemory 100
85
86#       splitType regular
87#       splitType heuristic
88        splitType hybrid
89        splitUseOnlyDrivingAxis false
90
91        interleaveDirSplits     true
92    dirSplitDepth 9
93
94        numberOfEndPointDomains 10000
95        ct_div_ci       0.0
96        randomize       false
97
98        refDirBoxMaxSize        0.1
99}
100
101Limits {
102
103       threshold        1e-6
104       small            1e-6
105       infinity         1e9
106}
107
108Unigraphics {
109                meshGrouping 1
110}
111
112KdTree {
113        sahUseFaces true
114        Termination {
115                minCost 1
116                maxDepth 18
117                maxCostRatio 0.9
118                ct_div_ci 0.5
119        }
120
121#       splitMethod spatialMedian
122        splitMethod SAH
123        splitBorder 0.01
124}
125
126MeshKdTree {
127        Termination {
128                minCost 1
129                maxDepth 18
130                maxCostRatio 0.9
131                ct_div_ci 0.5
132        }
133
134#       splitMethod spatialMedian
135        splitMethod SAH
136        splitBorder 0.01
137}
138
139
140Sampling {
141        totalSamples 300000
142        samplesPerPass  3
143}
144
145ViewCells {
146        loadFromFile false
147        #type kdTree
148        type vspKdTree
149        #type bspTree
150        #type vspBspTree
151       
152        #type sceneDependent
153       
154        height 5.0
155        maxViewCells 5000
156       
157        PostProcessing {
158                minPvsDif 100
159                minPvs 10
160                maxPvs 150
161                # how much samples are used for post processing
162                samples 10
163        }
164
165        Visualization {
166                # how much samples are be used for visualization
167                samples 90000
168        }
169       
170#       filename ../data/atlanta/atlanta_viewcells_large.x3d
171        filename ../data/vienna/viewcells-25-sel.x3d
172#       filename ../data/vienna/viewcells-25.x3d
173#       filename ../data/vienna/viewcells-large-sel.x3d
174}
175
176BspTree {
177        Construction {
178                samples 50000
179                epsilon 0.005
180        }
181
182
183        # random polygon       = 1
184        # axis aligned         = 2
185        # least splits         = 4
186        # balanced polygons    = 8
187        # balanced view cells  = 16
188        # largest polygon area = 32
189        # vertical axis        = 64
190        # blocked rays         = 128
191        # least ray splits     = 256
192        # balanced rays        = 512
193        # pvs                  = 1024
194
195        # least splits + balanced polygons
196        #splitPlaneStrategy 12
197       
198        #axis aligned + vertical axis
199        #splitPlaneStrategy 66
200       
201        # axis aligned + balanced view cells
202        # splitPlaneStrategy 18
203       
204        # largest polygon area
205        #splitPlaneStrategy 32
206       
207        # axus aligned + balanced polygons
208        #splitPlaneStrategy 72
209       
210        # axis aligned + blocked rays
211        #splitPlaneStrategy 130
212       
213        #splitPlaneStrategy 384
214        #splitPlaneStrategy 130
215       
216        splitPlaneStrategy 1024
217       
218        maxPolyCandidates 50
219        maxRayCandidates 50
220       
221        maxTests 10000
222       
223        # factors for evaluating split plane costs
224        Factor {
225                verticalSplits 1.0
226                largestPolyArea 1.0
227                blockedRays 1.0
228                leastRaySplits 1.0
229                balancedRays 1.0
230                pvs 1.0
231                leastSplits 1.0
232                balancedPolys 1.0
233                balancedViewCells 1.0
234        }
235       
236        Termination {
237                # parameters used for autopartition
238                minRays 200
239                minPolygons -1
240                maxDepth 40
241                minPvs 100
242                minArea 0.01
243                maxRayContribution 0.005
244                #maxAccRayLength 100
245               
246                # used for pvs criterium
247                ct_div_ci 0.0
248       
249                # axis aligned splits
250                AxisAligned {
251                        minPolys 5000
252                        minRays 500
253                        minObjects 10
254                        maxCostRatio 0.9
255                        ct_div_ci 0.5
256                }
257        }
258       
259        AxisAligned {
260                splitBorder 0.01
261        }
262       
263       
264        Visualization {
265                # x3d visualization of the split planes
266                exportSplits true
267                exportRays true
268                exportGeometry false
269        }
270}
271
272Simulation {
273        objRenderCost 1.0
274        vcOverhead 7.0
275        moveSpeed 3.0
276}
277
278
279VspKdTree {
280        epsilon         1e-6
281
282        Construction {
283                samples 300000
284        }
285       
286        Termination {
287                maxDepth                40
288                minPvs                  5
289                minRays                 500
290                minSize                 0.1
291                maxCostRatio            999.0
292                maxRayContribution      0.2
293        }
294       
295        maxTotalMemory  400
296        maxStaticMemory 200
297
298        splitType       regular
299        #splitType      heuristics
300        ct_div_ci       0.0
301       
302        # maximal cost for merging a view cell
303        PostProcess {
304                maxCostRatio 5000000
305                minViewCells 100
306                maxPvsSize   50000
307        }
308       
309       
310        Visualization {
311                exportRays true
312                exportGeometry false
313        }
314}
315
316VspBspTree {
317        Construction {
318                samples 100000
319                epsilon 0.005
320        }
321
322
323        # random polygon       = 1
324        # axis aligned         = 2
325        # least ray splits     = 256
326        # balanced rays        = 512
327        # pvs                  = 1024
328
329        splitPlaneStrategy 1024
330       
331        # maximal candidates for split planes
332        maxPolyCandidates 50
333        maxRayCandidates 50
334       
335        # maximal tested rays for split cost heuristics
336        maxTests 10000
337       
338        # factors for evaluating split plane costs
339        Factor {
340                leastRaySplits 1.0
341                balancedRays 1.0
342                pvs 1.0
343        }
344       
345        Termination {
346                # parameters used for autopartition
347                minRays 100
348                minPolygons -1
349                maxDepth 30
350                minPvs 100
351                minArea 0.01
352                maxRayContribution 0.005
353                #maxAccRayLength 100
354               
355                # used for pvs criterium
356                ct_div_ci 0.0
357       
358                # axis aligned splits
359                AxisAligned {
360                        minPolys 5000
361                        minRays 500
362                        minObjects 10
363                        maxCostRatio 0.9
364                        ct_div_ci 0.5
365                }
366        }
367       
368        AxisAligned {
369                splitBorder 0.01
370        }
371       
372       
373        Visualization {
374                # x3d visualization of the split planes
375                exportSplits true
376                exportRays true
377                exportGeometry false
378        }
379}
Note: See TracBrowser for help on using the repository browser.