HomeSort by relevance Sort by last modified time
    Searched full:keypoints_scene (Results 1 - 3 of 3) sorted by null

  /external/opencv3/doc/tutorials/features2d/feature_homography/
feature_homography.markdown 51 std::vector<KeyPoint> keypoints_object, keypoints_scene;
55 detector->detectAndCompute( img_scene, Mat(), keypoints_scene, descriptors_scene );
83 drawMatches( img_object, keypoints_object, img_scene, keypoints_scene,
95 scene.push_back( keypoints_scene[ good_matches[i].trainIdx ].pt );
  /external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
main_detection.cpp 192 vector<KeyPoint> keypoints_scene; // to obtain the 2D points of the scene local
197 rmatcher.fastRobustMatch(frame, good_matches, keypoints_scene, descriptors_model);
201 rmatcher.robustMatch(frame, good_matches, keypoints_scene, descriptors_model);
213 Point2f point2d_scene = keypoints_scene[ good_matches[match_index].queryIdx ].pt; // 2D point from the scene
  /external/opencv3/doc/tutorials/calib3d/real_time_pose/
real_time_pose.markdown 302 std::vector<cv::KeyPoint> keypoints_scene; // to obtain the 2D points of the scene
306 rmatcher.fastRobustMatch(frame, good_matches, keypoints_scene, descriptors_model);
310 rmatcher.robustMatch(frame, good_matches, keypoints_scene, descriptors_model);
365 cv::Point2f point2d_scene = keypoints_scene[ good_matches[match_index].queryIdx ].pt; // 2D point from the scene
    [all...]

Completed in 306 milliseconds