Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

CMakeLists.txt 375 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. cmake_minimum_required(VERSION 3.12)
  2. project(yolov8_openvino_example)
  3. set(CMAKE_CXX_STANDARD 14)
  4. find_package(OpenCV REQUIRED)
  5. include_directories(
  6. ${OpenCV_INCLUDE_DIRS}
  7. /path/to/intel/openvino/runtime/include
  8. )
  9. add_executable(detect
  10. main.cc
  11. inference.cc
  12. )
  13. target_link_libraries(detect
  14. ${OpenCV_LIBS}
  15. /path/to/intel/openvino/runtime/lib/intel64/libopenvino.so
  16. )
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...