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
418 B
19 lines
418 B
# minimum required cmake version: 3.1.0
|
|
cmake_minimum_required(VERSION 3.1.0)
|
|
|
|
project(RealsenseCVExamples)
|
|
|
|
find_package(OpenCV REQUIRED)
|
|
|
|
list(APPEND DEPENDENCIES ${OpenCV_LIBS})
|
|
|
|
add_subdirectory(imshow)
|
|
add_subdirectory(grabcuts)
|
|
add_subdirectory(latency-tool)
|
|
add_subdirectory(dnn)
|
|
add_subdirectory(depth-filter)
|
|
add_subdirectory(rotate-pointcloud)
|
|
if(BUILD_CV_KINFU_EXAMPLE)
|
|
add_subdirectory(kinfu)
|
|
endif()
|