Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
f367ad6c
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f367ad6c
编写于
2月 05, 2018
作者:
C
chengduoZH
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add "inline" for ClipFunctor and refine code
上级
d7a371cb
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
26 addition
and
13 deletion
+26
-13
paddle/operators/prior_box_op.h
paddle/operators/prior_box_op.h
+26
-13
未找到文件。
paddle/operators/prior_box_op.h
浏览文件 @
f367ad6c
...
@@ -46,7 +46,7 @@ inline void ExpandAspectRatios(const std::vector<float>& input_aspect_ratior,
...
@@ -46,7 +46,7 @@ inline void ExpandAspectRatios(const std::vector<float>& input_aspect_ratior,
template
<
typename
T
>
template
<
typename
T
>
struct
ClipFunctor
{
struct
ClipFunctor
{
HOSTDEVICE
T
operator
()(
T
in
)
const
{
HOSTDEVICE
inline
T
operator
()(
T
in
)
const
{
return
std
::
min
<
T
>
(
std
::
max
<
T
>
(
in
,
0.
),
1.
);
return
std
::
min
<
T
>
(
std
::
max
<
T
>
(
in
,
0.
),
1.
);
}
}
};
};
...
@@ -97,6 +97,9 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
...
@@ -97,6 +97,9 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
boxes
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
boxes
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
vars
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
vars
->
mutable_data
<
T
>
(
ctx
.
GetPlace
());
T
inv_img_width
=
1.0
/
img_width
;
T
inv_img_height
=
1.0
/
img_height
;
auto
e_boxes
=
framework
::
EigenTensor
<
T
,
4
>::
From
(
*
boxes
);
auto
e_boxes
=
framework
::
EigenTensor
<
T
,
4
>::
From
(
*
boxes
);
for
(
int
h
=
0
;
h
<
feature_height
;
++
h
)
{
for
(
int
h
=
0
;
h
<
feature_height
;
++
h
)
{
for
(
int
w
=
0
;
w
<
feature_width
;
++
w
)
{
for
(
int
w
=
0
;
w
<
feature_width
;
++
w
)
{
...
@@ -109,13 +112,15 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
...
@@ -109,13 +112,15 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
// first prior: aspect_ratio = 1, size = min_size
// first prior: aspect_ratio = 1, size = min_size
box_width
=
box_height
=
min_size
;
box_width
=
box_height
=
min_size
;
// xmin
// xmin
e_boxes
(
h
,
w
,
idx
,
0
)
=
(
center_x
-
box_width
/
2.
)
/
img_width
;
e_boxes
(
h
,
w
,
idx
,
0
)
=
(
center_x
-
box_width
*
0.5
)
*
inv_
img_width
;
// ymin
// ymin
e_boxes
(
h
,
w
,
idx
,
1
)
=
(
center_y
-
box_height
/
2.
)
/
img_height
;
e_boxes
(
h
,
w
,
idx
,
1
)
=
(
center_y
-
box_height
*
0.5
)
*
inv_img_height
;
// xmax
// xmax
e_boxes
(
h
,
w
,
idx
,
2
)
=
(
center_x
+
box_width
/
2.
)
/
img_width
;
e_boxes
(
h
,
w
,
idx
,
2
)
=
(
center_x
+
box_width
*
0.5
)
*
inv_
img_width
;
// ymax
// ymax
e_boxes
(
h
,
w
,
idx
,
3
)
=
(
center_y
+
box_height
/
2.
)
/
img_height
;
e_boxes
(
h
,
w
,
idx
,
3
)
=
(
center_y
+
box_height
*
0.5
)
*
inv_img_height
;
idx
++
;
idx
++
;
if
(
max_sizes
.
size
()
>
0
)
{
if
(
max_sizes
.
size
()
>
0
)
{
...
@@ -124,13 +129,17 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
...
@@ -124,13 +129,17 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
// size = sqrt(min_size * max_size)
// size = sqrt(min_size * max_size)
box_width
=
box_height
=
sqrt
(
min_size
*
max_size
);
box_width
=
box_height
=
sqrt
(
min_size
*
max_size
);
// xmin
// xmin
e_boxes
(
h
,
w
,
idx
,
0
)
=
(
center_x
-
box_width
/
2.
)
/
img_width
;
e_boxes
(
h
,
w
,
idx
,
0
)
=
(
center_x
-
box_width
*
0.5
)
*
inv_img_width
;
// ymin
// ymin
e_boxes
(
h
,
w
,
idx
,
1
)
=
(
center_y
-
box_height
/
2.
)
/
img_height
;
e_boxes
(
h
,
w
,
idx
,
1
)
=
(
center_y
-
box_height
*
0.5
)
*
inv_img_height
;
// xmax
// xmax
e_boxes
(
h
,
w
,
idx
,
2
)
=
(
center_x
+
box_width
/
2.
)
/
img_width
;
e_boxes
(
h
,
w
,
idx
,
2
)
=
(
center_x
+
box_width
*
0.5
)
*
inv_img_width
;
// ymax
// ymax
e_boxes
(
h
,
w
,
idx
,
3
)
=
(
center_y
+
box_height
/
2.
)
/
img_height
;
e_boxes
(
h
,
w
,
idx
,
3
)
=
(
center_y
+
box_height
*
0.5
)
*
inv_img_height
;
idx
++
;
idx
++
;
}
}
...
@@ -143,13 +152,17 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
...
@@ -143,13 +152,17 @@ class PriorBoxOpKernel : public framework::OpKernel<T> {
box_width
=
min_size
*
sqrt
(
ar
);
box_width
=
min_size
*
sqrt
(
ar
);
box_height
=
min_size
/
sqrt
(
ar
);
box_height
=
min_size
/
sqrt
(
ar
);
// xmin
// xmin
e_boxes
(
h
,
w
,
idx
,
0
)
=
(
center_x
-
box_width
/
2.
)
/
img_width
;
e_boxes
(
h
,
w
,
idx
,
0
)
=
(
center_x
-
box_width
*
0.5
)
*
inv_img_width
;
// ymin
// ymin
e_boxes
(
h
,
w
,
idx
,
1
)
=
(
center_y
-
box_height
/
2.
)
/
img_height
;
e_boxes
(
h
,
w
,
idx
,
1
)
=
(
center_y
-
box_height
*
0.5
)
*
inv_img_height
;
// xmax
// xmax
e_boxes
(
h
,
w
,
idx
,
2
)
=
(
center_x
+
box_width
/
2.
)
/
img_width
;
e_boxes
(
h
,
w
,
idx
,
2
)
=
(
center_x
+
box_width
*
0.5
)
*
inv_img_width
;
// ymax
// ymax
e_boxes
(
h
,
w
,
idx
,
3
)
=
(
center_y
+
box_height
/
2.
)
/
img_height
;
e_boxes
(
h
,
w
,
idx
,
3
)
=
(
center_y
+
box_height
*
0.5
)
*
inv_img_height
;
idx
++
;
idx
++
;
}
}
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录