1 Star 1 Fork 0

seeshem/ascend_yolov7_infer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CMakeLists.txt 769 Bytes
一键复制 编辑 原始数据 按行查看 历史
seeshem 提交于 2023-08-13 10:59 . first commit
cmake_minimum_required(VERSION 3.10)
project(C++Sample)
add_compile_options(-fPIC -std=c++11 -fstack-protector-all -Wl, -z,relro,-z,now,-z,noexecstack -s -pie)
add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0 -Dgoogle=mindxsdk_private)
set(MX_SDK_HOME $ENV{MX_SDK_HOME})
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/")
include_directories(
${MX_SDK_HOME}/include
${MX_SDK_HOME}/opensource/include
${MX_SDK_HOME}/opensource/include/opencv4
./plugin/
)
link_directories(
${MX_SDK_HOME}/lib
${MX_SDK_HOME}/include
${MX_SDK_HOME}/opensource/lib
# ${MX_SDK_HOME}/lib/modelpostprocessors
)
add_executable(sample main.cpp plugin/PostProcess.cpp)
target_link_libraries(sample
glog
mxbase
cpprest
opencv_world
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sundaelite/ascend_yolov7_infer.git
git@gitee.com:sundaelite/ascend_yolov7_infer.git
sundaelite
ascend_yolov7_infer
ascend_yolov7_infer
master

搜索帮助