CMakeLists.txt 362 B

1234567891011
  1. set(the_description "RGBD algorithms")
  2. ocv_define_module(rgbd opencv_core opencv_calib3d opencv_imgproc OPTIONAL opencv_viz WRAP python)
  3. if(NOT HAVE_EIGEN)
  4. message(STATUS "rgbd: Eigen support is disabled. Eigen is Required for Posegraph optimization")
  5. endif()
  6. if(HAVE_OPENGL)
  7. ocv_target_link_libraries(${the_module} PRIVATE "${OPENGL_LIBRARIES}")
  8. endif()