Changeset 473 for trunk/VUT/GtpVisibilityPreprocessor/scripts/default.env
- Timestamp:
- 12/20/05 20:33:42 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/VUT/GtpVisibilityPreprocessor/scripts/default.env
r472 r473 13 13 #;../data/vienna/vienna-plane.x3d 14 14 # filename ../data/vienna/viewcells-25-sel.x3d 15 #filename ../data/atlanta/atlanta2.x3d15 filename ../data/atlanta/atlanta2.x3d 16 16 # filename ../data/soda/soda.dat 17 filename ../data/soda/soda5.dat17 # filename ../data/soda/soda5.dat 18 18 } 19 19 … … 71 71 72 72 RssTree { 73 useRss false73 #useRss false 74 74 epsilon 1e-6 75 75 … … 146 146 loadFromFile false 147 147 #type kdTree 148 type vspKdTree148 #type vspKdTree 149 149 #type bspTree 150 #type vspBspTree150 type vspBspTree 151 151 152 152 #type sceneDependent … … 172 172 # filename ../data/vienna/viewcells-25.x3d 173 173 # filename ../data/vienna/viewcells-large-sel.x3d 174 } 175 176 177 Simulation { 178 objRenderCost 1.0 179 vcOverhead 7.0 180 moveSpeed 3.0 181 } 182 183 184 VspKdTree { 185 epsilon 1e-6 186 187 Construction { 188 samples 300000 189 } 190 191 Termination { 192 maxDepth 40 193 minPvs 5 194 minRays 500 195 minSize 0.1 196 maxCostRatio 0.9 197 missTolerance 4 198 maxRayContribution 0.2 199 } 200 201 maxTotalMemory 400 202 maxStaticMemory 200 203 204 splitType regular 205 #splitType heuristics 206 ct_div_ci 0.0 207 208 # maximal cost for merging a view cell 209 PostProcess { 210 maxCostRatio 5000000 211 minViewCells 100 212 maxPvsSize 50000 213 } 214 215 216 Visualization { 217 exportRays true 218 exportGeometry false 219 } 220 } 221 222 VspBspTree { 223 Construction { 224 samples 100000 225 epsilon 0.005 226 } 227 228 229 # random polygon = 1 230 # axis aligned = 2 231 # least ray splits = 256 232 # balanced rays = 512 233 # pvs = 1024 234 235 splitPlaneStrategy 1024 236 237 # maximal candidates for split planes 238 maxPolyCandidates 50 239 maxRayCandidates 50 240 241 # maximal tested rays for split cost heuristics 242 maxTests 10000 243 244 # factors for evaluating split plane costs 245 Factor { 246 leastRaySplits 1.0 247 balancedRays 1.0 248 pvs 1.0 249 } 250 251 Termination { 252 # parameters used for autopartition 253 minRays 100 254 minPolygons -1 255 maxDepth 30 256 minPvs 100 257 minArea 0.01 258 maxRayContribution 0.005 259 maxCostRatio 0.9 260 missTolerance 1 261 #maxAccRayLength 100 262 263 # used for pvs criterium 264 ct_div_ci 0.0 265 266 # axis aligned splits 267 AxisAligned { 268 minPolys 5000 269 minRays 500 270 minObjects 10 271 ct_div_ci 0.5 272 } 273 } 274 275 AxisAligned { 276 splitBorder 0.01 277 } 278 279 280 Visualization { 281 # x3d visualization of the split planes 282 exportSplits true 283 exportRays true 284 exportGeometry true 285 } 174 286 } 175 287 … … 247 359 ct_div_ci 0.0 248 360 361 maxCostRatio 0.9 362 249 363 # axis aligned splits 250 364 AxisAligned { … … 252 366 minRays 500 253 367 minObjects 10 254 maxCostRatio 0.9255 368 ct_div_ci 0.5 256 369 } … … 269 382 } 270 383 } 271 272 Simulation {273 objRenderCost 1.0274 vcOverhead 7.0275 moveSpeed 3.0276 }277 278 279 VspKdTree {280 epsilon 1e-6281 282 Construction {283 samples 300000284 }285 286 Termination {287 maxDepth 40288 minPvs 5289 minRays 500290 minSize 0.1291 maxCostRatio 0.9292 missTolerance 4293 maxRayContribution 0.2294 }295 296 maxTotalMemory 400297 maxStaticMemory 200298 299 splitType regular300 #splitType heuristics301 ct_div_ci 0.0302 303 # maximal cost for merging a view cell304 PostProcess {305 maxCostRatio 5000000306 minViewCells 100307 maxPvsSize 50000308 }309 310 311 Visualization {312 exportRays true313 exportGeometry false314 }315 }316 317 VspBspTree {318 Construction {319 samples 100000320 epsilon 0.005321 }322 323 324 # random polygon = 1325 # axis aligned = 2326 # least ray splits = 256327 # balanced rays = 512328 # pvs = 1024329 330 splitPlaneStrategy 1024331 332 # maximal candidates for split planes333 maxPolyCandidates 50334 maxRayCandidates 50335 336 # maximal tested rays for split cost heuristics337 maxTests 10000338 339 # factors for evaluating split plane costs340 Factor {341 leastRaySplits 1.0342 balancedRays 1.0343 pvs 1.0344 }345 346 Termination {347 # parameters used for autopartition348 minRays 100349 minPolygons -1350 maxDepth 30351 minPvs 100352 minArea 0.01353 maxRayContribution 0.005354 maxCostRatio 0.9355 missTolerance 4356 #maxAccRayLength 100357 358 # used for pvs criterium359 ct_div_ci 0.0360 361 # axis aligned splits362 AxisAligned {363 minPolys 5000364 minRays 500365 minObjects 10366 maxCostRatio 0.9367 ct_div_ci 0.5368 }369 }370 371 AxisAligned {372 splitBorder 0.01373 }374 375 376 Visualization {377 # x3d visualization of the split planes378 exportSplits true379 exportRays true380 exportGeometry false381 }382 }
Note: See TracChangeset
for help on using the changeset viewer.