AdamSpannbauer / python_video_stab

A Python package to stabilize videos using OpenCV
https://adamspannbauer.github.io/python_video_stab/html/index.html
MIT License
682 stars 118 forks source link

Non-free algorithms like SIFT and SURF causing tests to fail. #20

Closed RobRoseKnows closed 5 years ago

RobRoseKnows commented 6 years ago

See skvark/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:

AdamSpannbauer commented 5 years ago

Thanks for the catch, I had forgotten to turn on a recurring Travis build (turned on now).

Fix to come.

AdamSpannbauer commented 5 years ago

SIFT and SURF dropped from tests and a note about them has been added to the docs

thanks again for the catch @RobRoseKnows