Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
f708d425
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
f708d425
编写于
5月 21, 2020
作者:
G
Guanghua Yu
提交者:
GitHub
5月 21, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Cherry pick]fix bugs of cpp deploy in windows (#748)
* fix cpp deploy in windows
上级
a3bf27da
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
8 deletion
+8
-8
deploy/cpp/CMakeLists.txt
deploy/cpp/CMakeLists.txt
+2
-3
deploy/cpp/docs/linux_build.md
deploy/cpp/docs/linux_build.md
+2
-2
deploy/cpp/docs/windows_vs2019_build.md
deploy/cpp/docs/windows_vs2019_build.md
+4
-3
未找到文件。
deploy/cpp/CMakeLists.txt
浏览文件 @
f708d425
...
...
@@ -9,6 +9,7 @@ option(WITH_TENSORRT "Compile demo with TensorRT." OFF)
SET
(
PADDLE_DIR
""
CACHE PATH
"Location of libraries"
)
SET
(
OPENCV_DIR
""
CACHE PATH
"Location of libraries"
)
SET
(
CUDA_LIB
""
CACHE PATH
"Location of libraries"
)
SET
(
CUDNN_LIB
""
CACHE PATH
"Location of libraries"
)
SET
(
TENSORRT_DIR
""
CACHE PATH
"Compile demo with TensorRT"
)
include
(
cmake/yaml-cpp.cmake
)
...
...
@@ -51,7 +52,6 @@ endif()
if
(
EXISTS
"
${
PADDLE_DIR
}
/third_party/install/snappystream/include"
)
include_directories
(
"
${
PADDLE_DIR
}
/third_party/install/snappystream/include"
)
endif
()
include_directories
(
"
${
PADDLE_DIR
}
/third_party/install/zlib/include"
)
include_directories
(
"
${
PADDLE_DIR
}
/third_party/boost"
)
include_directories
(
"
${
PADDLE_DIR
}
/third_party/eigen3"
)
...
...
@@ -62,7 +62,6 @@ if(EXISTS "${PADDLE_DIR}/third_party/install/snappystream/lib")
link_directories
(
"
${
PADDLE_DIR
}
/third_party/install/snappystream/lib"
)
endif
()
link_directories
(
"
${
PADDLE_DIR
}
/third_party/install/zlib/lib"
)
link_directories
(
"
${
PADDLE_DIR
}
/third_party/install/protobuf/lib"
)
link_directories
(
"
${
PADDLE_DIR
}
/third_party/install/glog/lib"
)
link_directories
(
"
${
PADDLE_DIR
}
/third_party/install/gflags/lib"
)
...
...
@@ -183,7 +182,7 @@ if (NOT WIN32)
else
()
set
(
DEPS
${
DEPS
}
${
MATH_LIB
}
${
MKLDNN_LIB
}
glog gflags_static libprotobuf
zlibstatic
xxhash libyaml-cppmt
)
glog gflags_static libprotobuf xxhash libyaml-cppmt
)
set
(
DEPS
${
DEPS
}
libcmt shlwapi
)
if
(
EXISTS
"
${
PADDLE_DIR
}
/third_party/install/snappy/lib"
)
set
(
DEPS
${
DEPS
}
snappy
)
...
...
deploy/cpp/docs/linux_build.md
浏览文件 @
f708d425
...
...
@@ -106,7 +106,7 @@ make
./build/main
--model_dir
=
/root/projects/models/yolov3_darknet
--image_path
=
/root/projects/images/test.jpeg
```
图片文件
`可视化预测结果`
会保存在当前目录下
`
resul
t.jpeg`
文件中。
图片文件
`可视化预测结果`
会保存在当前目录下
`
outpu
t.jpeg`
文件中。
`样例二`
:
...
...
@@ -114,4 +114,4 @@ make
#使用 `GPU`预测视频`/root/projects/videos/test.avi`
./build/main
--model_dir
=
/root/projects/models/yolov3_darknet
--video_path
=
/root/projects/images/test.avi
--use_gpu
=
1
```
视频文件
`可视化预测结果`
会保存在当前目录下
`
resul
t.avi`
文件中。
视频文件
`可视化预测结果`
会保存在当前目录下
`
outpu
t.avi`
文件中。
deploy/cpp/docs/windows_vs2019_build.md
浏览文件 @
f708d425
...
...
@@ -67,6 +67,7 @@ fluid_inference
| 参数名 | 含义 |
| ---- | ---- |
|
*
CUDA_LIB | CUDA的库路径 |
| CUDNN_LIB | CUDNN的库路径 |
| OPENCV_DIR | OpenCV的安装路径, |
| PADDLE_DIR | Paddle预测库的路径 |
...
...
@@ -85,7 +86,7 @@ fluid_inference
上述
`Visual Studio 2019`
编译产出的可执行文件在
`out\build\x64-Release`
目录下,打开
`cmd`
,并切换到该目录:
```
cd D:\projects\PaddleDetection\
inference
\out\build\x64-Release
cd D:\projects\PaddleDetection\
deploy\cpp
\out\build\x64-Release
```
可执行文件
`main`
即为样例的预测程序,其主要的命令行参数如下:
...
...
@@ -105,7 +106,7 @@ cd D:\projects\PaddleDetection\inference\out\build\x64-Release
.
\m
ain
--model_dir
=
D:
\\
models
\\
yolov3_darknet
--image_path
=
D:
\\
images
\\
test.jpeg
```
图片文件
`可视化预测结果`
会保存在当前目录下
`
resul
t.jpeg`
文件中。
图片文件
`可视化预测结果`
会保存在当前目录下
`
outpu
t.jpeg`
文件中。
`样例二`
:
...
...
@@ -114,4 +115,4 @@ cd D:\projects\PaddleDetection\inference\out\build\x64-Release
.
\m
ain
--model_dir
=
D:
\\
models
\\
yolov3_darknet
--video_path
=
D:
\\
videos
\\
test.jpeg
--use_gpu
=
1
```
视频文件
`可视化预测结果`
会保存在当前目录下
`
resul
t.avi`
文件中。
视频文件
`可视化预测结果`
会保存在当前目录下
`
outpu
t.avi`
文件中。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录