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

Revision 423, 3.5 KB checked in by mattausch, 19 years ago (diff)

proceeding with the kd view space partition

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 {
[423]64        totalSamples    300000
[362]65        samplesPerPass  3
[235]66}
67
[310]68ViewCells {
[330]69        #hierarchy kdTree
[422]70        hierarchy vspTree
71        #hierarchy bspTree
[329]72        # hierarchy sceneDependent
73       
[321]74        height 5.0
[421]75        maxViewCells 0
[329]76       
[378]77        PostProcessing {
78                minPvsDif 100
79                minPvs 10
[414]80                maxPvs 150
81                samples 100000
[378]82        }
83
84       
[319]85#       filename ../data/atlanta/atlanta_viewcells_large.x3d
[361]86        filename ../data/vienna/viewcells-25-sel.x3d
87#       filename ../data/vienna/viewcells-25.x3d
[310]88#       filename ../data/vienna/viewcells-large-sel.x3d
89}
[308]90
[235]91BspTree {
[329]92        Construction {
[422]93                input fromSamples
[362]94        #       input fromViewCells
[361]95        #       input fromSceneGeometry
[419]96                samples 150000
[344]97                sideTolerance 0.005
[329]98        }
[310]99
[329]100
[321]101        # random polygon       = 1
[297]102        # axis aligned         = 2
103        # least splits         = 4
104        # balanced polygons    = 8
105        # balanced view cells  = 16
106        # largest polygon area = 32
107        # vertical axis        = 64
[319]108        # blocked rays         = 128
[332]109        # least ray splits     = 256
110        # balanced rays        = 512
[367]111        # pvs                  = 1024
[332]112
[297]113        # least splits + balanced polygons
114        #splitPlaneStrategy 12
[304]115       
[301]116        #axis aligned + vertical axis
[303]117        #splitPlaneStrategy 66
118       
[297]119        # axis aligned + balanced view cells
[302]120        # splitPlaneStrategy 18
[303]121       
[297]122        # largest polygon area
[301]123        #splitPlaneStrategy 32
[303]124       
[298]125        # axus aligned + balanced polygons
126        #splitPlaneStrategy 72
[303]127       
[332]128        # axis aligned + blocked rays
129        #splitPlaneStrategy 130
[319]130       
[349]131        #splitPlaneStrategy 384
[352]132        #splitPlaneStrategy 130
[313]133       
[420]134        splitPlaneStrategy 12
[352]135       
[420]136        maxPolyCandidates 70
137        maxRayCandidates 100
[332]138       
[235]139        Termination {
[409]140                # parameters used for autopartition
[420]141                maxRays 200
[404]142                maxPolygons -1
143                maxDepth 40
144                minPvs 35
[409]145                minArea 0.01
[410]146                maxRayContribution 0.005
[409]147                #maxAccRayLength 100
[332]148               
[352]149                # axis aligned splits
[362]150                AxisAligned {
[367]151                        maxPolys 5000
[379]152                        maxRays 500
[378]153                        maxObjects 10
[362]154                        maxCostRatio 0.9
155                        ct_div_ci 0.5
156                }
[235]157        }
[332]158       
[362]159        AxisAligned {
160                splitBorder 0.01
161        }
[367]162       
[389]163       
[392]164        Visualization {
[389]165                # x3d visualization of the split planes
166                exportSplits true
167                # how much samples should be used in visualization
[414]168                samples 20000
[389]169        }
[235]170}
[406]171
172Simulation {
173        objRenderCost 1.0
[419]174        vcOverhead 7.0
175        moveSpeed 3.0
[409]176}
177
178VssTree {
179        epsilon         1e-6
180
181        maxDepth        40
182        minPvs          1
183        minRays         50
184        minSize         0.00001
185        maxCostRatio    0.95
186        maxRayContribution 0.05
187       
188        maxTotalMemory  400
189        maxStaticMemory 20
190
191        splitType regular
192#       splitType heuristics
193
194        numberOfEndPointDomains 10000
195        ct_div_ci       0.0
196        randomize       false
197
198        refDirBoxMaxSize        0.1
199}
200
201VspKdTree {
202        epsilon         1e-6
203
[411]204        Construction {
205                samples 100000
206        }
[409]207       
[411]208        Termination {
209                maxDepth        40
[423]210                minPvs          5
211                minRays         100
212                minSize         0.001
[411]213                maxCostRatio    0.95
[423]214                maxRayContribution 0.1
[411]215        }
216       
[409]217        maxTotalMemory  400
[423]218        maxStaticMemory 200
[409]219
220        splitType regular
[422]221#       splitType heuristics
[409]222        ct_div_ci       0.0
[406]223}
Note: See TracBrowser for help on using the repository browser.