GNOME Bugzilla – Bug 790192
opencv: The plugins are not built using new OpenCV version
Last modified: 2017-11-23 15:57:42 UTC
Created attachment 363376 [details] [review] This commits update the OpenCV version in configure.ac file The current version described in configure.ac file does not allow to build the OpenCV plugins using 3.3.1 OpenCV version, it should be updated.
Hi folks, this patch has been tested and it has been included in Clear Linux https://github.com/clearlinux-pkgs/gst-plugins-bad/blob/master/0003-opencv-Update-version-for-building-plugins.patch Regards. Mario.
Comment on attachment 363376 [details] [review] This commits update the OpenCV version in configure.ac file Maybe this should be updated to < 3.4? Seems more future-proof
good idea, thanks. Regards. Mario.
Created attachment 364216 [details] [review] This commits update the OpenCV version in configure.ac file T
Comment on attachment 364216 [details] [review] This commits update the OpenCV version in configure.ac file I meant < 3.4.0 and not <= 3.3.4
Created attachment 364237 [details] [review] This commits update the OpenCV version in configure.ac file oh sorry, thanks. Regards. Mario.
commit b7dad57e9e8b6fb3fd7bf185b4aed4b366a2fc74 (HEAD -> master) Author: Mario Alfredo Carrillo Arevalo <mario.alfredo.c.arevalo@intel.com> Date: Fri Nov 10 13:32:17 2017 -0600 opencv: Update version for building plugins This commit allows to build the OpenCV plugin with OpenCV >= 2.3.0 to < 3.4.0. https://bugzilla.gnome.org/show_bug.cgi?id=790192
Review of attachment 364237 [details] [review]: ::: configure.ac @@ +2822,3 @@ dnl seem to be a switch to suppress the warnings the cvcompat.h header dnl causes.) + PKG_CHECK_MODULES(OPENCV, opencv >= 2.3.0 opencv <= 3.4.0 , [ I changed this to < 3.4.0. 3.4.0 is going to change the API again, potentially. The point is to keep the next API incompatible version out of the version range.
perfect, thanks for help. Regards. Mario.