source: trunk/VUT/GtpVisibilityPreprocessor/src/default.env @ 376

Revision 376, 2.7 KB checked in by bittner, 19 years ago (diff)

vsspreprocessor kdtree meshkdtree optimization

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
11filename ../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
18Preprocessor {
19#       type sampling
20        type vss
21}
22
23VssPreprocessor {
24        totalSamples 1000000
25        samplesPerPass  100000
26}
27
28Limits {
29
30       threshold        1e-6
31       small            1e-6
32       infinity         1e9
33}
34
35Unigraphics {
36                meshGrouping 1
37}
38
39KdTree {
40        sahUseFaces true
41        Termination {
42                minCost 1
43                maxDepth 18
44                maxCostRatio 0.9
45                ct_div_ci 0.5
46        }
47
48#       splitMethod spatialMedian
49        splitMethod SAH
50        splitBorder 0.01
51}
52
53MeshKdTree {
54        Termination {
55                minCost 1
56                maxDepth 18
57                maxCostRatio 0.9
58                ct_div_ci 0.5
59        }
60
61#       splitMethod spatialMedian
62        splitMethod SAH
63        splitBorder 0.01
64}
65
66
67Sampling {
68        totalSamples 100000000
69        samplesPerPass  3
70}
71
72ViewCells {
73        hierarchy kdTree
74        #hierarchy bspTree
75        # hierarchy sceneDependent
76       
77        height 5.0
78        maxViewCells 0
79       
80        minPvsDif 100
81#       maxPvsSize 200
82       
83#       filename ../data/atlanta/atlanta_viewcells_large.x3d
84        filename ../data/vienna/viewcells-25-sel.x3d
85#       filename ../data/vienna/viewcells-25.x3d
86#       filename ../data/vienna/viewcells-large-sel.x3d
87}
88
89BspTree {
90        Construction {
91                input fromRays
92        #       input fromViewCells
93        #       input fromSceneGeometry
94                samples 10000
95                sideTolerance 0.005
96        }
97
98
99        # random polygon       = 1
100        # axis aligned         = 2
101        # least splits         = 4
102        # balanced polygons    = 8
103        # balanced view cells  = 16
104        # largest polygon area = 32
105        # vertical axis        = 64
106        # blocked rays         = 128
107        # least ray splits     = 256
108        # balanced rays        = 512
109        # pvs                  = 1024
110
111        # least splits + balanced polygons
112        #splitPlaneStrategy 12
113       
114        #axis aligned + vertical axis
115        #splitPlaneStrategy 66
116       
117        # axis aligned + balanced view cells
118        # splitPlaneStrategy 18
119       
120        # largest polygon area
121        #splitPlaneStrategy 32
122       
123        # axus aligned + balanced polygons
124        #splitPlaneStrategy 72
125       
126        # axis aligned + blocked rays
127        #splitPlaneStrategy 130
128       
129        #splitPlaneStrategy 384
130        #splitPlaneStrategy 130
131       
132        splitPlaneStrategy 1024
133       
134        maxCandidates 80
135       
136        Termination {
137                # autopartition
138                maxRays 200
139                maxPolygons 5
140                maxDepth 100
141               
142                # axis aligned splits
143                AxisAligned {
144                        maxPolys 5000
145                        maxRays 5000
146                        maxObjects 2000
147                        maxCostRatio 0.9
148                        ct_div_ci 0.5
149                }
150        }
151       
152        AxisAligned {
153                splitBorder 0.01
154        }
155       
156        PostProcessing {
157                samples 100000
158        }
159               
160        # if split polys are stored for visualization
161        storeSplitPolys false
162        # x3d visualization of the split planes
163        exportSplits true
164}
Note: See TracBrowser for help on using the repository browser.