Commit c8f2050c authored by Ilya Lavrenov's avatar Ilya Lavrenov

warn fix

parent 06acf709
...@@ -80,7 +80,7 @@ OCL_TEST_P( BRIEF, Accuracy ) ...@@ -80,7 +80,7 @@ OCL_TEST_P( BRIEF, Accuracy )
brief.compute( img, keypoints, descriptorsGold ); brief.compute( img, keypoints, descriptorsGold );
Mat kpMat( 2, int( keypoints.size() ), CV_32FC1 ); Mat kpMat( 2, int( keypoints.size() ), CV_32FC1 );
for ( size_t i = 0; i < keypoints.size( ); ++i ) for ( int i = 0, size = (int)keypoints.size( ); i < size; ++i )
{ {
kpMat.col( i ).row( 0 ) = int( keypoints[i].pt.x ); kpMat.col( i ).row( 0 ) = int( keypoints[i].pt.x );
kpMat.col( i ).row( 1 ) = int( keypoints[i].pt.y ); kpMat.col( i ).row( 1 ) = int( keypoints[i].pt.y );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment