Merge pull request #2206 from ilya-lavrenov:ocl_warn_fix

This commit is contained in:
Andrey Pavlenko 2014-01-27 16:05:54 +04:00 committed by OpenCV Buildbot
commit 4dd805b7a9

View File

@ -80,7 +80,7 @@ OCL_TEST_P( BRIEF, Accuracy )
brief.compute( img, keypoints, descriptorsGold );
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( 1 ) = int( keypoints[i].pt.y );
@ -112,4 +112,4 @@ OCL_TEST_P( BRIEF, Accuracy )
}
INSTANTIATE_TEST_CASE_P( OCL_Features2D, BRIEF, testing::Values( 16, 32, 64 ) );
#endif
#endif