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

Revision 335, 2.4 KB checked in by mattausch, 19 years ago (diff)

reprogrammed splitplane evaluation. updated default.env

RevLine 
[235]1#############################################################################
2# ERS default configuration file
3# Jiri Bittner 2003
4#############################################################################
5
6Scene {
7
8#       filename glasgow1.x3d
9#       filename vienna.x3d
[308]10#       filename ../data/vienna/vienna-simple.x3d
[332]11        filename ../data/vienna/vienna-buildings.x3d
[304]12#       filename ../data/vienna/viewcells-25-sel.x3d
[332]13#       filename ../data/atlanta/atlanta2.x3d
[235]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 {
[331]58        totalSamples    1000000
[321]59        samplesPerPass  20
[235]60}
61
[310]62ViewCells {
[330]63        #hierarchy kdTree
[329]64        hierarchy bspTree
65        # hierarchy sceneDependent
66       
[321]67        height 5.0
[318]68        maxViewCells 0
[329]69       
[319]70#       filename ../data/atlanta/atlanta_viewcells_large.x3d
[330]71        filename ../data/vienna/viewcells-25-sel.x3d
72#       filename ../data/vienna/viewcells-25.x3d
[310]73#       filename ../data/vienna/viewcells-large-sel.x3d
74}
[308]75
[235]76BspTree {
[329]77        Construction {
[331]78                input fromRays
[329]79        #       input fromViewCells
80        #       input fromSceneGeometry
[331]81                samples 200000
[329]82                sideTolerance 0.002
83        }
[310]84
[329]85
[321]86        # random polygon       = 1
[297]87        # axis aligned         = 2
88        # least splits         = 4
89        # balanced polygons    = 8
90        # balanced view cells  = 16
91        # largest polygon area = 32
92        # vertical axis        = 64
[319]93        # blocked rays         = 128
[332]94        # least ray splits     = 256
95        # balanced rays        = 512
96
[297]97        # least splits + balanced polygons
98        #splitPlaneStrategy 12
[304]99       
[301]100        #axis aligned + vertical axis
[303]101        #splitPlaneStrategy 66
102       
[297]103        # axis aligned + balanced view cells
[302]104        # splitPlaneStrategy 18
[303]105       
[297]106        # largest polygon area
[301]107        #splitPlaneStrategy 32
[303]108       
[298]109        # axus aligned + balanced polygons
110        #splitPlaneStrategy 72
[303]111       
[332]112        # axis aligned + blocked rays
113        #splitPlaneStrategy 130
[319]114       
[335]115        splitPlaneStrategy 130
[313]116       
[335]117        maxCandidates 50
[332]118       
[235]119        Termination {
[332]120                # autopartition
121                maxRays -1
[335]122                maxPolygons 20
[332]123                maxDepth 100
124               
125                #axis aligned split
[335]126                maxPolysForAxisAligned 200
[332]127                maxCostRatio 0.9
128                ct_div_ci 0.5
[235]129        }
[332]130       
131        #axis aligned split
132        splitBorder 0.01
133       
[321]134        # if split polys are stored for visualization
135        storeSplitPolys false
136        # x3d visualization of the split planes
137        exportSplits true
[235]138}
Note: See TracBrowser for help on using the repository browser.