OpenCV3.4.1+opencv_contrib编译过程中CMAKE提示错误怎么解决

CMake Warning at D:/application/vs/opencv/opencv_contrib-3.4.1/modules/matlab/CMakeLists.txt:33 (message):
A required dependency of the matlab module (Python) was not found.
Disabling Matlab bindings...

OpenCV3.4.1+opencv_contrib编译过程中CMAKE提示错误怎么解决

CMakeLists.txt中对应部分

if(APPLE_FRAMEWORK OR ANDROID OR NOT MATLAB_FOUND)
    ocv_module_disable(matlab)
elseif(NOT PYTHON_DEFAULT_AVAILABLE)
    message(WARNING "A required dependency of the matlab module (Python) was not found. Disabling Matlab bindings...")
    ocv_module_disable(matlab)
endif()
OpenCV3.4.1+opencv_contrib编译过程中CMAKE提示错误怎么解决

相关文章:

  • 2021-06-24
  • 2021-10-07
  • 2021-12-20
  • 2021-08-18
  • 2021-12-12
  • 2021-10-15
  • 2021-05-14
  • 2021-08-25
猜你喜欢
  • 2021-09-23
  • 2021-11-07
  • 2021-06-10
  • 2021-06-26
  • 2022-12-23
  • 2021-08-10
  • 2021-09-18
相关资源
相似解决方案