From fe42ca3023aaf1d488e033d6cf39a84d8b178449 Mon Sep 17 00:00:00 2001 From: Andrew Barrett-Sprot Date: Sat, 9 Dec 2017 20:55:50 +0000 Subject: [PATCH] Add comment including videoio library I keep forgetting what library I need to include on my laptop to get my opencv bindings to work, as I'm running a later version where video IO tasks have been split into a separate library. Add a comment which indicates what you must do to get it to work. --- sb_vision/native/cvcapture_build.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sb_vision/native/cvcapture_build.py b/sb_vision/native/cvcapture_build.py index 9770b45..c50a930 100644 --- a/sb_vision/native/cvcapture_build.py +++ b/sb_vision/native/cvcapture_build.py @@ -30,6 +30,9 @@ 'opencv_core', 'opencv_highgui', 'opencv_imgproc', + # Uncomment if you have an issue with _ZNK2cv12VideoCapture8isOpenedEv as you've got a newer + # version of opencv than the current build. + # 'opencv_videoio', ], )