单目3D初始代码
This commit is contained in:
21
examples/YOLOv8-OpenVINO-CPP-Inference/CMakeLists.txt
Executable file
21
examples/YOLOv8-OpenVINO-CPP-Inference/CMakeLists.txt
Executable file
@@ -0,0 +1,21 @@
|
||||
cmake_minimum_required(VERSION 3.12)
|
||||
project(yolov8_openvino_example)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 14)
|
||||
|
||||
find_package(OpenCV REQUIRED)
|
||||
|
||||
include_directories(
|
||||
${OpenCV_INCLUDE_DIRS}
|
||||
/path/to/intel/openvino/runtime/include
|
||||
)
|
||||
|
||||
add_executable(detect
|
||||
main.cc
|
||||
inference.cc
|
||||
)
|
||||
|
||||
target_link_libraries(detect
|
||||
${OpenCV_LIBS}
|
||||
/path/to/intel/openvino/runtime/lib/intel64/libopenvino.so
|
||||
)
|
||||
Reference in New Issue
Block a user