source: GTP/trunk/Lib/Vis/Preprocessing/scripts/gi_final.env @ 2232

Revision 2232, 4.7 KB checked in by mattausch, 18 years ago (diff)
Line 
1###############################################################################
2# ERS default configuration file
3# Jiri Bittner 2003
4#############################################################################
5
6Scene {
7
8        filename ../data/vienna/vienna_cropped.obj
9#       filename ../data/soda/soda.dat
10#       filename ../data/soda/soda5.dat
11#       filename ../data/artificial/cube_test.x3d
12#       filename ../data/CityModel.obj
13#       filename ../data/arena/arena-low-lods.obj
14}
15
16
17Preprocessor {
18        samplesPerPass 3000000
19        type vss
20        detectEmptyViewSpace true
21        loadMeshes false
22        # internal raycaster
23        #rayCastMethod 0 
24        # intel raycaster
25        rayCastMethod 1
26        exportVisibility false
27        applyVisibilityFilter false
28        applyVisibilitySpatialFilter false
29}
30
31
32RssPreprocessor {
33        distributions mutation+spatial+object_direction
34        #distributions spatial
35
36
37        useImportanceSampling true
38
39        Export {
40                pvs false
41                rssTree false
42        }
43
44        useViewcells true
45        updateSubdivision true
46        loadInitialSamples false
47        storeInitialSamples false
48
49        useRssTree true
50}
51
52
53
54VssTree {
55        useRss          false
56        epsilon         1e-6
57       
58        maxDepth        2
59        minPvs          30
60        minRays         800
61        minSize         0.001
62        maxCostRatio    1.5
63        maxRayContribution 0.5
64               
65        maxTotalMemory  50
66        maxStaticMemory 20
67       
68        splitType regular
69        #       splitType heuristic
70        #       splitType hybrid
71        splitUseOnlyDrivingAxis true
72       
73        interleaveDirSplits     true
74        dirSplitDepth 0
75       
76        numberOfEndPointDomains 10000
77        ct_div_ci       0.0
78        randomize       false
79       
80        refDirBoxMaxSize        0.1
81}
82
83
84Limits {
85       threshold        1e-6
86       small            1e-6
87       infinity         1e9
88}
89
90
91Unigraphics {
92        meshGrouping 1
93}
94
95
96KdTree {
97        sahUseFaces true
98
99        Termination {
100                minCost 0
101                maxDepth 20
102               
103                maxCostRatio 1.5
104                ct_div_ci 0.5
105        }
106
107#       splitMethod spatialMedian
108        splitMethod SAH
109        splitBorder 0.01
110}
111
112MeshKdTree {
113        Termination {
114                minCost 1
115                maxDepth 18
116                maxCostRatio 0.9
117                ct_div_ci 0.5
118        }
119
120#       splitMethod spatialMedian
121        splitMethod SAH
122        splitBorder 0.01
123}
124
125
126ViewCells {
127       
128        # samples used for view cell construction in the merge step
129        Construction {
130                samples 0
131                samplesPerPass 1000000
132        }
133
134        # number of active view cells
135        active 25000
136        maxStaticMemory 40
137
138        exportToFile true
139        loadFromFile false
140
141        #exportPvs true
142
143        # type of view cells
144        type vspOspTree
145       
146        #percentage of total visible objects where pvs is considered invalid
147        maxPvsRatio 1.0
148               
149        processOnlyValidViewCells false
150
151        samplingType box
152
153        PostProcess {
154                # how much samples are used for post processing
155                samples 0
156                maxMergesPerPass 5000
157                useRaysForMerge false
158                refine false
159                compress true
160                merge false
161        }
162
163        Visualization {
164                # how much samples we use for visualization
165                samples 200
166                exportRays true
167                exportGeometry true
168                exportMergedViewCells false
169                useClipPlane true
170                clipPlaneAxis 1
171                clipPlanePos 0.3
172                maxOutput 0
173        }
174
175        showVisualization true
176        #showVisualization false
177        evaluateViewCells true
178       
179        Evaluation {
180                #samples         200000000
181                #samplesForStats 100000000
182                samples          60000000
183                samplesForStats  30000000
184
185                samplesPerPass  250000
186
187                #stepSize       500
188                stepSize        100
189
190                samplingType box
191
192                histogram true
193                histoStepSize 200
194                histoMem 60
195
196                statsPrefix ../scripts/viewCells
197        }
198}
199
200
201################################
202#
203# View space partitioning kd tree
204#
205
206VspTree {
207        Construction {
208                renderCostDecreaseWeight 0.999
209        }
210
211        Termination {
212                minPvs 0
213                maxViewCells 500000
214        }
215
216        useCostHeuristics true
217        #splitUseOnlyDrivingAxis true
218
219        #useCostHeuristics false
220        splitUseOnlyDrivingAxis false
221
222        # maximum number of tests per node
223        maxTests 1000000
224}
225
226
227
228#
229# The bounding volume hierarchy
230#
231
232BvHierarchy {
233
234        Construction {         
235                renderCostDecreaseWeight 0.999
236        }
237
238        Termination {
239                maxLeaves 50000000
240        }
241
242        minRaysForVisibility 3
243        #minRaysForVisibility 15
244
245        # use only surface area heuristic
246        useCostHeuristics true
247        #useCostHeuristics false
248        useSah false
249
250        #splitUseOnlyDrivingAxis true
251        splitUseOnlyDrivingAxis false
252
253        maxTests 50000000
254}
255
256
257###############################################################
258#
259# Manages the construction of view space and object space partition
260#
261
262Hierarchy {
263        # the type of object space partition: view space is always vsp (=kd) partition
264        type bvh
265       
266        Construction {
267
268                samples 5000000
269
270                # type 0 = sequential computation, 1 = interleaved, 2 = gradient
271                type 2
272
273                ###############################
274                # only for interleaved method
275
276                # if dirty split candidates are reevaluated
277                repairQueue true
278
279                ###################################################
280
281                # minimal steps of same type: for interleaved, this is only valid for the first few splits
282                minStepsOfSameType 100
283                #maxStepsOfSameType 3000
284                maxStepsOfSameType 1000
285
286                maxRepairs 1000
287        }
288
289        Termination {
290                # maximal number of leaves
291                maxLeaves 300000
292#               maxLeaves 6000
293                # maximal memory in MB
294#               maxMemory 4
295                maxMemory 30
296                # minimum ratio of global cost decrease
297                minGlobalCostRatio -1
298        }
299}
Note: See TracBrowser for help on using the repository browser.