From 05a45ef6dc447b9a8d45de677be8074b451522ac Mon Sep 17 00:00:00 2001 From: GilLevi Date: Thu, 21 May 2015 00:04:24 +0300 Subject: [PATCH] renamed LATCH --- samples/cpp/tutorial_code/xfeatures2D/LATCH_match.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/cpp/tutorial_code/xfeatures2D/LATCH_match.cpp b/samples/cpp/tutorial_code/xfeatures2D/LATCH_match.cpp index 29f44b2f31..b1886744dd 100644 --- a/samples/cpp/tutorial_code/xfeatures2D/LATCH_match.cpp +++ b/samples/cpp/tutorial_code/xfeatures2D/LATCH_match.cpp @@ -22,7 +22,7 @@ int main(void) Mat homography; FileStorage fs("../data/H1to3p.xml", FileStorage::READ); - + fs.getFirstTopLevelNode() >> homography; vector kpts1, kpts2; @@ -30,7 +30,7 @@ int main(void) Ptr orb_detector = cv::ORB::create(10000); - Ptr latch = xfeatures2d::LATCHDescriptorExtractor::create(); + Ptr latch = xfeatures2d::LATCH::create(); orb_detector->detect(img1, kpts1);