You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See opencv/opencv-python#126. As of OpenCV 3.4.3, the patented algorithms such as SIFT and SURF are hidden behind the OPENCV_ENABLE_NONFREE=1 flag. They are no longer included in the Python bindings which is causing the tests to fail on Travis.
Possible options are:
Remove SIFT and SURF from the tests
Add try-except logic in kp_method initialization to raise a warning when SIFT and SURF are used.
The text was updated successfully, but these errors were encountered:
See opencv/opencv-python#126. As of OpenCV 3.4.3, the patented algorithms such as SIFT and SURF are hidden behind the
OPENCV_ENABLE_NONFREE=1
flag. They are no longer included in the Python bindings which is causing the tests to fail on Travis.Possible options are:
The text was updated successfully, but these errors were encountered: