From 7867e8d298c43de7bed19b0211268edb6163947f Mon Sep 17 00:00:00 2001 From: nergen Date: Sat, 6 Jun 2020 16:35:17 -0700 Subject: [PATCH] Fixed mistake in method name --- source/py_tutorials/py_feature2d/py_matcher/py_matcher.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/py_tutorials/py_feature2d/py_matcher/py_matcher.rst b/source/py_tutorials/py_feature2d/py_matcher/py_matcher.rst index b81130b..fd7baeb 100644 --- a/source/py_tutorials/py_feature2d/py_matcher/py_matcher.rst +++ b/source/py_tutorials/py_feature2d/py_matcher/py_matcher.rst @@ -33,7 +33,7 @@ Brute-Force Matching with ORB Descriptors Here, we will see a simple example on how to match features between two images. In this case, I have a queryImage and a trainImage. We will try to find the queryImage in trainImage using feature matching. ( The images are ``/samples/c/box.png`` and ``/samples/c/box_in_scene.png``) -We are using SIFT descriptors to match features. So let's start with loading images, finding descriptors etc. +We are using ORB descriptors to match features. So let's start with loading images, finding descriptors etc. :: import numpy as np