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

Revision 366, 2.6 KB checked in by mattausch, 19 years ago (diff)

some ideas abou saving bspleaves with the ray and t

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