Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
54fdd887
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
54fdd887
编写于
10月 15, 2021
作者:
Z
zhiboniu
提交者:
GitHub
10月 15, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add Pipeline Total time (#4318)
上级
396a519b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
23 addition
and
0 deletion
+23
-0
deploy/lite/src/main.cc
deploy/lite/src/main.cc
+23
-0
未找到文件。
deploy/lite/src/main.cc
浏览文件 @
54fdd887
...
...
@@ -71,6 +71,18 @@ void PrintBenchmarkLog(std::vector<double> det_time, int img_num) {
<<
", postprocess_time(ms): "
<<
det_time
[
2
]
/
img_num
<<
std
::
endl
;
}
void
PrintTotalIimeLog
(
double
det_time
,
double
keypoint_time
,
double
crop_time
)
{
std
::
cout
<<
"----------------------- Time info ------------------------"
<<
std
::
endl
;
std
::
cout
<<
"Total Pipeline time(ms): "
<<
det_time
+
keypoint_time
+
crop_time
<<
std
::
endl
;
std
::
cout
<<
"average det time(ms): "
<<
det_time
<<
", average keypoint time(ms): "
<<
keypoint_time
<<
", average crop time(ms): "
<<
crop_time
<<
std
::
endl
;
}
static
std
::
string
DirName
(
const
std
::
string
&
filepath
)
{
auto
pos
=
filepath
.
rfind
(
OS_PATH_SEP
);
if
(
pos
==
std
::
string
::
npos
)
{
...
...
@@ -114,6 +126,7 @@ void PredictImage(const std::vector<std::string> all_img_paths,
int
steps
=
ceil
(
float
(
all_img_paths
.
size
())
/
batch_size_det
);
int
kpts_imgs
=
0
;
std
::
vector
<
double
>
keypoint_t
=
{
0
,
0
,
0
};
double
midtimecost
=
0
;
for
(
int
idx
=
0
;
idx
<
steps
;
idx
++
)
{
std
::
vector
<
cv
::
Mat
>
batch_imgs
;
int
left_image_cnt
=
all_img_paths
.
size
()
-
idx
*
batch_size_det
;
...
...
@@ -143,6 +156,7 @@ void PredictImage(const std::vector<std::string> all_img_paths,
}
else
{
det
->
Predict
(
batch_imgs
,
0.5
,
0
,
1
,
&
result
,
&
bbox_num
,
&
det_times
);
}
// get labels and colormap
auto
labels
=
det
->
GetLabelList
();
auto
colormap
=
PaddleDetection
::
GenerateColorMap
(
labels
.
size
());
...
...
@@ -196,6 +210,7 @@ void PredictImage(const std::vector<std::string> all_img_paths,
if
(
keypoint
)
{
int
imsize
=
im_result
.
size
();
for
(
int
i
=
0
;
i
<
imsize
;
i
++
)
{
auto
keypoint_start_time
=
std
::
chrono
::
steady_clock
::
now
();
auto
item
=
im_result
[
i
];
cv
::
Mat
crop_img
;
std
::
vector
<
double
>
keypoint_times
;
...
...
@@ -210,6 +225,11 @@ void PredictImage(const std::vector<std::string> all_img_paths,
imgs_kpts
.
emplace_back
(
crop_img
);
kpts_imgs
+=
1
;
}
auto
keypoint_crop_time
=
std
::
chrono
::
steady_clock
::
now
();
std
::
chrono
::
duration
<
float
>
midtimediff
=
keypoint_crop_time
-
keypoint_start_time
;
midtimecost
+=
double
(
midtimediff
.
count
()
*
1000
);
if
(
imgs_kpts
.
size
()
==
RT_Config
[
"batch_size_keypoint"
].
as
<
int
>
()
||
((
i
==
imsize
-
1
)
&&
!
imgs_kpts
.
empty
()))
{
...
...
@@ -265,6 +285,9 @@ void PredictImage(const std::vector<std::string> all_img_paths,
}
PrintBenchmarkLog
(
det_t
,
all_img_paths
.
size
());
PrintBenchmarkLog
(
keypoint_t
,
kpts_imgs
);
PrintTotalIimeLog
((
det_t
[
0
]
+
det_t
[
1
]
+
det_t
[
2
])
/
all_img_paths
.
size
(),
(
keypoint_t
[
0
]
+
keypoint_t
[
1
]
+
keypoint_t
[
2
])
/
kpts_imgs
,
midtimecost
/
all_img_paths
.
size
());
}
int
main
(
int
argc
,
char
**
argv
)
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录