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

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

worded on vspkdtree

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        PostProcessing {
78                minPvsDif 100
79                minPvs 10
80                maxPvs 150
81                samples 100000
82        }
83
84       
85#       filename ../data/atlanta/atlanta_viewcells_large.x3d
86        filename ../data/vienna/viewcells-25-sel.x3d
87#       filename ../data/vienna/viewcells-25.x3d
88#       filename ../data/vienna/viewcells-large-sel.x3d
89}
90
91BspTree {
92        Construction {
93                input fromSamples
94        #       input fromViewCells
95        #       input fromSceneGeometry
96                samples 150000
97                sideTolerance 0.005
98        }
99
100
101        # random polygon       = 1
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
108        # blocked rays         = 128
109        # least ray splits     = 256
110        # balanced rays        = 512
111        # pvs                  = 1024
112
113        # least splits + balanced polygons
114        #splitPlaneStrategy 12
115       
116        #axis aligned + vertical axis
117        #splitPlaneStrategy 66
118       
119        # axis aligned + balanced view cells
120        # splitPlaneStrategy 18
121       
122        # largest polygon area
123        #splitPlaneStrategy 32
124       
125        # axus aligned + balanced polygons
126        #splitPlaneStrategy 72
127       
128        # axis aligned + blocked rays
129        #splitPlaneStrategy 130
130       
131        #splitPlaneStrategy 384
132        #splitPlaneStrategy 130
133       
134        splitPlaneStrategy 12
135       
136        maxPolyCandidates 70
137        maxRayCandidates 100
138       
139        Termination {
140                # parameters used for autopartition
141                maxRays 200
142                maxPolygons -1
143                maxDepth 40
144                minPvs 35
145                minArea 0.01
146                maxRayContribution 0.005
147                #maxAccRayLength 100
148               
149                # axis aligned splits
150                AxisAligned {
151                        maxPolys 5000
152                        maxRays 500
153                        maxObjects 10
154                        maxCostRatio 0.9
155                        ct_div_ci 0.5
156                }
157        }
158       
159        AxisAligned {
160                splitBorder 0.01
161        }
162       
163       
164        Visualization {
165                # x3d visualization of the split planes
166                exportSplits true
167                # how much samples should be used in visualization
168                samples 20000
169        }
170}
171
172Simulation {
173        objRenderCost 1.0
174        vcOverhead 7.0
175        moveSpeed 3.0
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
204        Construction {
205                samples 100000
206        }
207       
208        Termination {
209                maxDepth        40
210                minPvs          1
211                minRays         50
212                minSize         0.00001
213                maxCostRatio    0.95
214                maxRayContribution 0.05
215        }
216       
217        maxTotalMemory  400
218        maxStaticMemory 20
219
220        splitType regular
221#       splitType heuristics
222        ct_div_ci       0.0
223}
Note: See TracBrowser for help on using the repository browser.