source: trunk/VUT/GtpVisibilityPreprocessor/src/default.env @ 463

Revision 463, 5.7 KB checked in by bittner, 19 years ago (diff)

removed mT from vss ray

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