Skip to content

Commit

Permalink
Fix infinite loop in binary search in matlab code.
Browse files Browse the repository at this point in the history
  • Loading branch information
edrosten committed Oct 4, 2010
1 parent 27a4bba commit d1d4860
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fast_tree_to_matlab_score_bsearch
Expand Up @@ -238,7 +238,7 @@ function bmin = corner_score(i, posx, posy)
bmin = 0;
bmax = 255;
b = floor(bmax + bmin)/2;
b = floor((bmax + bmin)/2);
%Compute the score using binary search
while 1
Expand Down
Binary file modified fast_trees/FAST_trees.tar.bz2
Binary file not shown.

0 comments on commit d1d4860

Please sign in to comment.