Skip to content

Commit 44c7c86

Browse files
committed
Update find_objects.cpp
1 parent a01632d commit 44c7c86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rapp_image_recognition/src/find_objects.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ cv::OrbFeatureDetector detector;
5454
cv::OrbDescriptorExtractor extractor;
5555

5656
// Matcher.
57-
cv::BFMatcher matcher(NORM_L2, true);
57+
cv::BFMatcher matcher(NORM_HAMMING, true);
5858

5959

6060
// ******************************* FUNCTIONS *******************************
@@ -83,7 +83,7 @@ bool extractFeatures(const cv::Mat image_, std::vector<KeyPoint> & keypoints_, c
8383
// Detect the keypoints.
8484
detector.detect( gray_img, keypoints_ );
8585

86-
ROS_DEBUG("Detected %d keypoints", keypoints_.size());
86+
ROS_INFO("Detected %d keypoints", keypoints_.size());
8787

8888
// Extract descriptors (feature vectors).
8989
extractor.compute( gray_img, keypoints_, descriptors_ );

0 commit comments

Comments
 (0)