- Timestamp:
- 01/15/07 22:53:44 (18 years ago)
- Location:
- GTP/trunk/Lib/Vis/Preprocessing/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
GTP/trunk/Lib/Vis/Preprocessing/src/SamplingStrategy.cpp
r1983 r1986 731 731 732 732 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)); 734 734 // set this values for last contributingRays 735 735 int index = mBufferStart - 1; -
GTP/trunk/Lib/Vis/Preprocessing/src/run
r1985 r1986 1 1 #!/bin/sh 2 2 3 COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish- -preprocessor_use_gl_renderer+ -preprocessor_evaluate_filter- "3 COMMAND="../scripts/preprocessor.sh -preprocessor_quit_on_finish- -preprocessor_use_gl_renderer+ -preprocessor_evaluate_filter- -preprocessor_ray_cast_method=0" 4 4 5 SCENE=../data/Pompeii/PompeiiTen.obj6 VIEWCELLS=../data/Pompeii/pompeii_big-seq-viewcells.xml.gz5 #SCENE=../data/Pompeii/PompeiiTen.obj 6 #VIEWCELLS=../data/Pompeii/pompeii_big-seq-viewcells.xml.gz 7 7 8 #SCENE=../data/artificial/room_with_sphere.obj 9 #VIEWCELLS=../data/artificial/simpleHoleViewCell.x3d 10 11 SCENE=../data/soda/soda5.dat 12 VIEWCELLS=../data/soda/soda5-viewcells.xml 8 13 9 14 $COMMAND -preprocessor=combined -scene_filename=$SCENE -view_cells_filename=$VIEWCELLS \ 10 -preprocessor_detect_empty_viewspace -\15 -preprocessor_detect_empty_viewspace+ \ 11 16 -rss_distributions=mutation+object_direction+spatial 12 17
Note: See TracChangeset
for help on using the changeset viewer.