mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
58ce84a3ea
Meson was checking for $prefix/OpenCV but was then defining OPENCV_PATH_NAME with 'OpenCv' rather than 'OpenCV'. https://bugzilla.gnome.org/show_bug.cgi?id=793212
90 lines
2.4 KiB
Meson
90 lines
2.4 KiB
Meson
gstopencv_sources = [
|
|
'gstcvdilate.cpp',
|
|
'gstcvdilateerode.cpp',
|
|
'gstcvequalizehist.cpp',
|
|
'gstcverode.cpp',
|
|
'gstcvlaplace.cpp',
|
|
'gstcvsmooth.cpp',
|
|
'gstcvsobel.cpp',
|
|
'gstdisparity.cpp',
|
|
'gstedgedetect.cpp',
|
|
'gstfaceblur.cpp',
|
|
'gstfacedetect.cpp',
|
|
'gstgrabcut.cpp',
|
|
'gsthanddetect.cpp',
|
|
'gstmotioncells.cpp',
|
|
'gstopencv.cpp',
|
|
'gstretinex.cpp',
|
|
'gstsegmentation.cpp',
|
|
'gstskindetect.cpp',
|
|
'gsttemplatematch.cpp',
|
|
'gsttextoverlay.cpp',
|
|
'MotionCells.cpp',
|
|
'motioncells_wrapper.cpp',
|
|
'gstdewarp.cpp'
|
|
]
|
|
|
|
libopencv2_headers = [
|
|
'opencv2/core/core_c.h',
|
|
'opencv2/core/version.hpp',
|
|
'opencv2/highgui/highgui_c.h',
|
|
'opencv2/imgproc/imgproc.hpp',
|
|
'opencv2/imgproc/imgproc_c.h',
|
|
'opencv2/objdetect/objdetect.hpp',
|
|
'opencv2/video/background_segm.hpp',
|
|
]
|
|
|
|
libopencv3_headers = [
|
|
'opencv2/bgsegm.hpp',
|
|
]
|
|
|
|
gstopencv_cargs = ['-DGST_HAAR_CASCADES_DIR="@0@"']
|
|
|
|
opencv_dep = dependency('opencv', version : ['>= 2.3.0', '< 3.5.0'], required : false)
|
|
opencv_found = opencv_dep.found()
|
|
|
|
if opencv_found
|
|
foreach h : libopencv2_headers
|
|
if not cxx.has_header(h)
|
|
message('Needed header "' + h + '" not found')
|
|
opencv_found = false
|
|
endif
|
|
endforeach
|
|
|
|
if opencv_dep.version() >= '3.0.0'
|
|
foreach h : libopencv3_headers
|
|
if not cxx.has_header(h)
|
|
message('Needed header "' + h + '" not found')
|
|
opencv_found = false
|
|
endif
|
|
endforeach
|
|
endif
|
|
endif
|
|
|
|
if opencv_found
|
|
opencv_prefix = opencv_dep.get_pkgconfig_variable('prefix')
|
|
gstopencv_cargs += ['-DOPENCV_PREFIX="' + opencv_prefix + '"']
|
|
|
|
# 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')
|
|
if r.returncode() == 0
|
|
gstopencv_cargs += '-DOPENCV_PATH_NAME="opencv"'
|
|
else
|
|
r = run_command('test', '-d', opencv_prefix + '/share/OpenCV')
|
|
if r.returncode() == 0
|
|
gstopencv_cargs += '-DOPENCV_PATH_NAME="OpenCV"'
|
|
else
|
|
error('Unable to detect OpenCV data directory')
|
|
endif
|
|
endif
|
|
gstopencv = library('gstopencv',
|
|
gstopencv_sources,
|
|
cpp_args : gst_plugins_bad_args + gstopencv_cargs + [ '-DGST_USE_UNSTABLE_API' ],
|
|
link_args : noseh_link_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstbase_dep, gstvideo_dep, opencv_dep, gstopencv_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
endif
|