[SOPHGO] Add PaddleDetection YOLOv8 example (#1165)

sophon yolov8s example

Co-authored-by: Jason <jiangjiajun@baidu.com>
This commit is contained in:
Zilong Xing
2023-01-30 11:47:07 +08:00
committed by GitHub
parent 294607fc4a
commit a709fe4813
8 changed files with 131 additions and 5 deletions

View File

@@ -14,6 +14,8 @@ include_directories(${FastDeploy_INCLUDE_DIRS})
add_executable(infer_ppyoloe ${PROJECT_SOURCE_DIR}/infer_ppyoloe.cc)
add_executable(infer_picodet ${PROJECT_SOURCE_DIR}/infer_picodet.cc)
add_executable(infer_yolov8 ${PROJECT_SOURCE_DIR}/infer_yolov8.cc)
# 添加FastDeploy库依赖
target_link_libraries(infer_ppyoloe ${FASTDEPLOY_LIBS})
target_link_libraries(infer_picodet ${FASTDEPLOY_LIBS})
target_link_libraries(infer_yolov8 ${FASTDEPLOY_LIBS})