From 9379e85e23b2feda1317d5fec2117f1ebe0b9193 Mon Sep 17 00:00:00 2001 From: Lukas Weber Date: Wed, 20 Oct 2021 09:07:48 +0200 Subject: [PATCH] changed no longer patented SIFT --- samples/python/stitching_detailed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/python/stitching_detailed.py b/samples/python/stitching_detailed.py index 4ee29048d1..dfa88beba1 100644 --- a/samples/python/stitching_detailed.py +++ b/samples/python/stitching_detailed.py @@ -36,7 +36,7 @@ except (AttributeError, cv.error) as e: # if SURF not available, ORB is default FEATURES_FIND_CHOICES['orb'] = cv.ORB.create try: - FEATURES_FIND_CHOICES['sift'] = cv.xfeatures2d_SIFT.create + FEATURES_FIND_CHOICES['sift'] = cv.SIFT_create except AttributeError: print("SIFT not available") try: