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

Revision 410, 3.5 KB checked in by mattausch, 19 years ago (diff)
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 vss
28}
29
30Unigraphics {
31                meshGrouping 1
32}
33
34KdTree {
35        sahUseFaces true
36        Termination {
37                minCost 2
38                maxDepth 18
39                maxCostRatio 0.9
40                ct_div_ci 0.5
41        }
42
43#       splitMethod spatialMedian
44        splitMethod SAH
45        splitBorder 0.01
46}
47
48MeshKdTree {
49        Termination {
50                minCost 4
51                maxDepth 18
52                maxCostRatio 0.9
53                ct_div_ci 0.5
54        }
55
56#       splitMethod spatialMedian
57        splitMethod SAH
58        splitBorder 0.01
59}
60
61
62Sampling {
63        totalSamples    1000000
64        samplesPerPass  3
65}
66
67ViewCells {
68        #hierarchy kdTree
69        hierarchy bspTree
70        # hierarchy sceneDependent
71       
72        height 5.0
73        maxViewCells 0
74       
75       
76        PostProcessing {
77                minPvsDif 100
78                minPvs 10
79                maxPvs 300
80                samples 0
81        }
82
83       
84#       filename ../data/atlanta/atlanta_viewcells_large.x3d
85        filename ../data/vienna/viewcells-25-sel.x3d
86#       filename ../data/vienna/viewcells-25.x3d
87#       filename ../data/vienna/viewcells-large-sel.x3d
88}
89
90BspTree {
91        Construction {
92                input fromRays
93        #       input fromViewCells
94        #       input fromSceneGeometry
95                samples 200000
96                sideTolerance 0.005
97        }
98
99
100        # random polygon       = 1
101        # axis aligned         = 2
102        # least splits         = 4
103        # balanced polygons    = 8
104        # balanced view cells  = 16
105        # largest polygon area = 32
106        # vertical axis        = 64
107        # blocked rays         = 128
108        # least ray splits     = 256
109        # balanced rays        = 512
110        # pvs                  = 1024
111
112        # least splits + balanced polygons
113        #splitPlaneStrategy 12
114       
115        #axis aligned + vertical axis
116        #splitPlaneStrategy 66
117       
118        # axis aligned + balanced view cells
119        # splitPlaneStrategy 18
120       
121        # largest polygon area
122        #splitPlaneStrategy 32
123       
124        # axus aligned + balanced polygons
125        #splitPlaneStrategy 72
126       
127        # axis aligned + blocked rays
128        #splitPlaneStrategy 130
129       
130        #splitPlaneStrategy 384
131        #splitPlaneStrategy 130
132       
133        splitPlaneStrategy 1024
134       
135        maxPolyCandidates 50
136        maxRayCandidates 100
137       
138        Termination {
139                # parameters used for autopartition
140                maxRays 200
141                maxPolygons -1
142                maxDepth 40
143                minPvs 35
144                minArea 0.01
145                maxRayContribution 0.005
146                #maxAccRayLength 100
147               
148                # axis aligned splits
149                AxisAligned {
150                        maxPolys 5000
151                        maxRays 500
152                        maxObjects 10
153                        maxCostRatio 0.9
154                        ct_div_ci 0.5
155                }
156        }
157       
158        AxisAligned {
159                splitBorder 0.01
160        }
161       
162       
163        Visualization {
164                # x3d visualization of the split planes
165                exportSplits true
166                # how much samples should be used in visualization
167                samples 1000
168        }
169}
170
171Simulation {
172        objRenderCost 1.0
173        vcOverhead 1.0
174        moveSpeed 1.0
175}
176
177VssTree {
178        epsilon         1e-6
179
180        maxDepth        40
181        minPvs          1
182        minRays         50
183        minSize         0.00001
184        maxCostRatio    0.95
185        maxRayContribution 0.05
186       
187        maxTotalMemory  400
188        maxStaticMemory 20
189
190        splitType regular
191#       splitType heuristics
192
193        numberOfEndPointDomains 10000
194        ct_div_ci       0.0
195        randomize       false
196
197        refDirBoxMaxSize        0.1
198}
199
200VspKdTree {
201        epsilon         1e-6
202
203        maxDepth        40
204        minPvs          1
205        minRays         50
206        minSize         0.00001
207        maxCostRatio    0.95
208        maxRayContribution 0.05
209       
210        maxTotalMemory  400
211        maxStaticMemory 20
212
213        splitType regular
214#       splitType heuristics
215
216        numberOfEndPointDomains 10000
217        ct_div_ci       0.0
218        randomize       false
219
220        refDirBoxMaxSize        0.1
221}
Note: See TracBrowser for help on using the repository browser.