Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
raulmur committed Oct 15, 2015
1 parent ba6653f commit fb70390
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ORBextractor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,6 @@ void ORBextractor::ComputeKeyPoints(vector<vector<KeyPoint> >& allKeypoints)


float hY = cellH + 6;
float hX = cellW + 6;

for(int i=0; i<levelRows; i++)
{
Expand All @@ -571,6 +570,8 @@ void ORBextractor::ComputeKeyPoints(vector<vector<KeyPoint> >& allKeypoints)
if(hY<=0)
continue;
}

float hX = cellW + 6;

for(int j=0; j<levelCols; j++)
{
Expand Down

0 comments on commit fb70390

Please sign in to comment.