提交 c8f2050c 编写于 作者: I Ilya Lavrenov

warn fix

上级 06acf709
......@@ -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
\ No newline at end of file
#endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册