Changeset 1986


Ignore:
Timestamp:
01/15/07 22:53:44 (17 years ago)
Author:
bittner
Message:
 
Location:
GTP/trunk/Lib/Vis/Preprocessing/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/SamplingStrategy.cpp

    r1983 r1986  
    731731   
    732732  float pContributingRays = contributingRays/(float)vssRays.size(); 
    733   float importance = sqr(1.0f/(pContributingRays + 1e-5)); 
     733  float importance = 1.0f; //sqr(1.0f/(pContributingRays + 1e-5)); 
    734734  // set this values for last contributingRays 
    735735  int index = mBufferStart - 1; 
  • GTP/trunk/Lib/Vis/Preprocessing/src/run

    r1985 r1986  
    11#!/bin/sh 
    22 
    3 COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish- -preprocessor_use_gl_renderer+ -preprocessor_evaluate_filter-" 
     3COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish- -preprocessor_use_gl_renderer+ -preprocessor_evaluate_filter- -preprocessor_ray_cast_method=0" 
    44 
    5 SCENE=../data/Pompeii/PompeiiTen.obj 
    6 VIEWCELLS=../data/Pompeii/pompeii_big-seq-viewcells.xml.gz 
     5#SCENE=../data/Pompeii/PompeiiTen.obj 
     6#VIEWCELLS=../data/Pompeii/pompeii_big-seq-viewcells.xml.gz 
    77 
     8#SCENE=../data/artificial/room_with_sphere.obj 
     9#VIEWCELLS=../data/artificial/simpleHoleViewCell.x3d 
     10 
     11SCENE=../data/soda/soda5.dat 
     12VIEWCELLS=../data/soda/soda5-viewcells.xml 
    813 
    914$COMMAND -preprocessor=combined -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \ 
    10 -preprocessor_detect_empty_viewspace- \ 
     15-preprocessor_detect_empty_viewspace+ \ 
    1116-rss_distributions=mutation+object_direction+spatial 
    1217 
Note: See TracChangeset for help on using the changeset viewer.