mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-22 07:31:26 +08:00
New warnings corrected
This commit is contained in:
@@ -128,13 +128,4 @@ int main( int argc, char** argv )
|
||||
std::vector<std::vector<DMatch> > matches;
|
||||
bdm->radiusMatch( queries, matches, 30 );
|
||||
|
||||
/* print matches */
|
||||
for ( size_t q = 0; q < matches.size(); q++ )
|
||||
{
|
||||
for ( size_t m = 0; m < matches[q].size(); m++ )
|
||||
{
|
||||
DMatch dm = matches[q][m];
|
||||
std::cout << "Descriptor: " << q << " Image: " << dm.imgIdx << " Distance: " << dm.distance << std::endl;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user