Skip to content

Commit 6959138

Browse files
committed
Update find_objects.cpp
1 parent 9b9873b commit 6959138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rapp_image_recognition/src/find_objects.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ int findObjects(std::string fname, std::vector<std::string> names, std::vector<s
240240
std::vector< DMatch > good_matches;
241241

242242
for( int i = 0; i < matches.size(); i++ ) {
243-
if( matches[i].distance < 10*min_dist )
243+
if( matches[i].distance <= 10*min_dist+0.1 )
244244
good_matches.push_back( matches[i]);
245245
}//: for
246246

0 commit comments

Comments
 (0)