diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-07-07 21:50:43 -0400 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2011-07-07 21:50:43 -0400 |
commit | e0b26a41d7e8698acc8126400fe2f7ed0cc630b3 (patch) | |
tree | 281fa2cebdde63da8d56aaa951ebd03b095c48d4 | |
parent | c952b485dbaa32353b1f59edd59e96483417028a (diff) | |
download | wgmr-e0b26a41d7e8698acc8126400fe2f7ed0cc630b3.tar.gz wgmr-e0b26a41d7e8698acc8126400fe2f7ed0cc630b3.zip |
smaller intensity threshold
-rw-r--r-- | beam_trace.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/beam_trace.m b/beam_trace.m index 9a56192..0896975 100644 --- a/beam_trace.m +++ b/beam_trace.m @@ -4,7 +4,7 @@ function img = beam_trace(beams, faces, borders, border_limits, img) % border similar to faces cell array which enclose the beam % i.e. it does not leave the polygon consisting of border faces - intensity_threshold = 1e-8; % intensity of the weakest beam which we still trace + intensity_threshold = 1e-3; % intensity of the weakest beam which we still trace Nbeams=size(beams)(2); if ( Nbeams == 0 ) |