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

Revision 415, 3.5 KB checked in by mattausch, 19 years ago (diff)
RevLine 
[235]1#############################################################################
2# ERS default configuration file
3# Jiri Bittner 2003
4#############################################################################
5
6Scene {
7
8#       filename glasgow1.x3d
9#       filename vienna.x3d
[349]10#       filename ../data/vienna/vienna-simple.x3d
[362]11#       filename ../data/vienna/vienna-buildings.x3d
[304]12#       filename ../data/vienna/viewcells-25-sel.x3d
[362]13        filename ../data/atlanta/atlanta2.x3d
[235]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
[410]25Preprocessor {
[414]26        type sampling
27#       type exact
28#       type vss
[410]29}
30
[235]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 {
[406]64        totalSamples    1000000
[362]65        samplesPerPass  3
[235]66}
67
[310]68ViewCells {
[330]69        #hierarchy kdTree
[411]70        hierarchy vspTree
[329]71        hierarchy bspTree
72        # hierarchy sceneDependent
73       
[321]74        height 5.0
[318]75        maxViewCells 0
[329]76       
[362]77       
[378]78        PostProcessing {
79                minPvsDif 100
80                minPvs 10
[414]81                maxPvs 150
82                samples 100000
[378]83        }
84
85       
[319]86#       filename ../data/atlanta/atlanta_viewcells_large.x3d
[361]87        filename ../data/vienna/viewcells-25-sel.x3d
88#       filename ../data/vienna/viewcells-25.x3d
[310]89#       filename ../data/vienna/viewcells-large-sel.x3d
90}
[308]91
[235]92BspTree {
[329]93        Construction {
[362]94                input fromRays
95        #       input fromViewCells
[361]96        #       input fromSceneGeometry
[414]97                samples 100000
[344]98                sideTolerance 0.005
[329]99        }
[310]100
[329]101
[321]102        # random polygon       = 1
[297]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
[319]109        # blocked rays         = 128
[332]110        # least ray splits     = 256
111        # balanced rays        = 512
[367]112        # pvs                  = 1024
[332]113
[297]114        # least splits + balanced polygons
115        #splitPlaneStrategy 12
[304]116       
[301]117        #axis aligned + vertical axis
[303]118        #splitPlaneStrategy 66
119       
[297]120        # axis aligned + balanced view cells
[302]121        # splitPlaneStrategy 18
[303]122       
[297]123        # largest polygon area
[301]124        #splitPlaneStrategy 32
[303]125       
[298]126        # axus aligned + balanced polygons
127        #splitPlaneStrategy 72
[303]128       
[332]129        # axis aligned + blocked rays
130        #splitPlaneStrategy 130
[319]131       
[349]132        #splitPlaneStrategy 384
[352]133        #splitPlaneStrategy 130
[313]134       
[415]135        splitPlaneStrategy 8
[352]136       
[406]137        maxPolyCandidates 50
[415]138        maxRayCandidates 50
[332]139       
[235]140        Termination {
[409]141                # parameters used for autopartition
[406]142                maxRays 200
[404]143                maxPolygons -1
144                maxDepth 40
145                minPvs 35
[409]146                minArea 0.01
[410]147                maxRayContribution 0.005
[409]148                #maxAccRayLength 100
[332]149               
[352]150                # axis aligned splits
[362]151                AxisAligned {
[367]152                        maxPolys 5000
[379]153                        maxRays 500
[378]154                        maxObjects 10
[362]155                        maxCostRatio 0.9
156                        ct_div_ci 0.5
157                }
[235]158        }
[332]159       
[362]160        AxisAligned {
161                splitBorder 0.01
162        }
[367]163       
[389]164       
[392]165        Visualization {
[389]166                # x3d visualization of the split planes
167                exportSplits true
168                # how much samples should be used in visualization
[414]169                samples 20000
[389]170        }
[235]171}
[406]172
173Simulation {
174        objRenderCost 1.0
[410]175        vcOverhead 1.0
176        moveSpeed 1.0
[409]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
[411]205        Construction {
206                samples 100000
207        }
[409]208       
[411]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       
[409]218        maxTotalMemory  400
219        maxStaticMemory 20
220
221        splitType regular
222
223        numberOfEndPointDomains 10000
224        ct_div_ci       0.0
[406]225}
Note: See TracBrowser for help on using the repository browser.