2020-07-15 04:04:47 +00:00
|
|
|
if get_option('opencv').disabled()
|
|
|
|
gstopencv_dep = disabler()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2016-11-15 16:57:20 +00:00
|
|
|
opencv_sources = [
|
|
|
|
'gstopencvutils.cpp',
|
|
|
|
'gstopencvvideofilter.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
opencv_headers = [
|
2018-03-13 12:57:56 +00:00
|
|
|
'opencv-prelude.h',
|
2016-11-15 16:57:20 +00:00
|
|
|
'gstopencvutils.h',
|
|
|
|
'gstopencvvideofilter.h',
|
|
|
|
]
|
|
|
|
|
2020-07-15 04:04:47 +00:00
|
|
|
libopencv_headers = [
|
|
|
|
'opencv2/bgsegm.hpp',
|
|
|
|
'opencv2/calib3d.hpp',
|
|
|
|
'opencv2/core.hpp',
|
|
|
|
'opencv2/imgproc.hpp',
|
|
|
|
'opencv2/objdetect.hpp',
|
|
|
|
'opencv2/opencv.hpp',
|
|
|
|
'opencv2/video.hpp',
|
|
|
|
'opencv2/tracking.hpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
gstopencv_cargs = ['-DGST_HAAR_CASCADES_DIR="@0@"']
|
|
|
|
|
|
|
|
opencv_dep = dependency('opencv', version : ['>= 3.0.0', '< 3.5.0'], required : false)
|
|
|
|
opencv_found = opencv_dep.found()
|
|
|
|
if not opencv_found
|
|
|
|
opencv_dep = dependency('opencv4', version : ['>= 4.0.0'], required : false)
|
|
|
|
opencv_found = opencv_dep.found()
|
2020-08-22 21:33:48 +00:00
|
|
|
endif
|
|
|
|
|
2020-07-15 04:04:47 +00:00
|
|
|
if opencv_found
|
|
|
|
foreach h : libopencv_headers
|
|
|
|
if not cxx.has_header(h, dependencies: opencv_dep)
|
|
|
|
message('Needed header "' + h + '" not found')
|
|
|
|
opencv_found = false
|
|
|
|
endif
|
|
|
|
endforeach
|
2018-11-25 15:13:28 +00:00
|
|
|
endif
|
2020-07-15 04:04:47 +00:00
|
|
|
|
|
|
|
if opencv_found
|
|
|
|
opencv_prefix = opencv_dep.get_variable('prefix')
|
|
|
|
gstopencv_cargs += ['-DOPENCV_PREFIX="' + opencv_prefix + '"']
|
2020-07-10 18:58:23 +00:00
|
|
|
# opencv4 seems to ship with .pc file that references non-existent include dir
|
|
|
|
# (/usr/include/opencv4/opencv instead of /usr/include/opencv4/opencv2)
|
2020-08-05 09:35:12 +00:00
|
|
|
# clang 10 complains about the following header in opencv4
|
|
|
|
# /usr/include/opencv4/opencv2/flann/logger.h:83:36: error: format string is not a string literal [-Werror,-Wformat-nonliteral]
|
2020-07-15 04:04:47 +00:00
|
|
|
gstopencv_cargs += cxx.get_supported_arguments(['-Wno-missing-include-dirs', '-Wno-format-nonliteral'])
|
2020-07-10 18:58:23 +00:00
|
|
|
|
2020-07-15 04:04:47 +00:00
|
|
|
# Check the data dir used by opencv for its xml data files
|
|
|
|
# Use prefix from pkg-config to be compatible with cross-compilation
|
|
|
|
r = run_command('test', '-d', opencv_prefix + '/share/opencv', check: false)
|
|
|
|
if r.returncode() == 0
|
|
|
|
gstopencv_cargs += '-DOPENCV_PATH_NAME="opencv"'
|
|
|
|
else
|
|
|
|
r = run_command('test', '-d', opencv_prefix + '/share/OpenCV', check: false)
|
|
|
|
if r.returncode() == 0
|
|
|
|
gstopencv_cargs += '-DOPENCV_PATH_NAME="OpenCV"'
|
|
|
|
else
|
|
|
|
r = run_command('test', '-d', opencv_prefix + '/share/opencv4', check: false)
|
|
|
|
if r.returncode() == 0
|
|
|
|
gstopencv_cargs += '-DOPENCV_PATH_NAME="opencv4"'
|
|
|
|
else
|
|
|
|
message('Unable to detect OpenCV data directory')
|
|
|
|
opencv_found = false
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if opencv_found
|
2020-06-27 04:39:00 +00:00
|
|
|
pkg_name = 'gstreamer-opencv-1.0'
|
2016-11-15 16:57:20 +00:00
|
|
|
gstopencv = library('gstopencv-' + api_version,
|
|
|
|
opencv_sources,
|
2018-09-24 10:52:22 +00:00
|
|
|
c_args : gst_plugins_bad_args + ['-DBUILDING_GST_OPENCV'],
|
2021-10-01 14:31:18 +00:00
|
|
|
cpp_args : gst_plugins_bad_args + gstopencv_cargs + ['-DBUILDING_GST_OPENCV', '-DG_LOG_DOMAIN="GStreamer-OpenCV"'],
|
2021-06-30 04:56:49 +00:00
|
|
|
override_options : ['cpp_std=c++11'],
|
2016-11-15 16:57:20 +00:00
|
|
|
include_directories : [configinc, libsinc],
|
|
|
|
version : libversion,
|
|
|
|
soversion : soversion,
|
2020-06-27 04:39:00 +00:00
|
|
|
darwin_versions : osxversion,
|
2016-11-15 16:57:20 +00:00
|
|
|
install : true,
|
|
|
|
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep],
|
|
|
|
)
|
|
|
|
|
2022-09-01 15:51:48 +00:00
|
|
|
gst_libraries += [[pkg_name, {'lib': gstopencv}]]
|
2016-11-15 16:57:20 +00:00
|
|
|
gstopencv_dep = declare_dependency(link_with: gstopencv,
|
|
|
|
include_directories : [libsinc],
|
|
|
|
dependencies : [gstvideo_dep, opencv_dep])
|
2020-06-27 04:39:00 +00:00
|
|
|
meson.override_dependency(pkg_name, gstopencv_dep)
|
2018-07-27 13:29:23 +00:00
|
|
|
|
|
|
|
install_headers(opencv_headers, subdir : 'gstreamer-1.0/gst/opencv')
|
2019-05-05 20:11:16 +00:00
|
|
|
elif get_option('opencv').enabled()
|
|
|
|
error('OpenCV support enabled but required dependencies were not found.')
|
2023-10-26 14:32:28 +00:00
|
|
|
else
|
|
|
|
gstopencv_dep = disabler()
|
2016-11-15 16:57:20 +00:00
|
|
|
endif
|