mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
540 B
19 lines
540 B
2 years ago
|
# --- obsensor ---
|
||
|
if(NOT HAVE_OBSENSOR)
|
||
|
if(WIN32)
|
||
|
check_include_file(mfapi.h HAVE_MFAPI)
|
||
|
if(HAVE_MFAPI)
|
||
|
set(HAVE_OBSENSOR TRUE)
|
||
|
set(HAVE_OBSENSOR_MSMF TRUE)
|
||
|
ocv_add_external_target(obsensor "" "" "HAVE_OBSENSOR;HAVE_OBSENSOR_MSMF")
|
||
|
endif()
|
||
|
elseif(UNIX)
|
||
|
check_include_file(linux/videodev2.h HAVE_CAMV4L2)
|
||
|
if(HAVE_CAMV4L2)
|
||
|
set(HAVE_OBSENSOR TRUE)
|
||
|
set(HAVE_OBSENSOR_V4L2 TRUE)
|
||
|
ocv_add_external_target(obsensor "" "" "HAVE_OBSENSOR;HAVE_OBSENSOR_V4L2")
|
||
|
endif()
|
||
|
endif()
|
||
|
endif()
|