Skip to content

Commit

Permalink
Merge pull request #5 from drondao/master
Browse files Browse the repository at this point in the history
Update anms.h
  • Loading branch information
BAILOOL authored Apr 16, 2019
2 parents 4a57d56 + 14b36a3 commit a1b83b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CmakeProject/source/anms.h
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ vector<cv::KeyPoint> Ssc(vector<cv::KeyPoint> keyPoints, int numRetPoints,float
break;
}
result.clear();
double c = width/2; //initializing Grid
double c = (double)width/2.0; //initializing Grid
int numCellCols = floor(cols/c);
int numCellRows = floor(rows/c);
vector<vector<bool> > coveredVec(numCellRows+1,vector<bool>(numCellCols+1,false));
Expand Down

0 comments on commit a1b83b6

Please sign in to comment.