提交 c12a969b 编写于 作者: J jerrywgz

refine comment and unittest, test=develop

上级 0d4b60ab
...@@ -32,7 +32,7 @@ class BoxCoderOp : public framework::OperatorWithKernel { ...@@ -32,7 +32,7 @@ class BoxCoderOp : public framework::OperatorWithKernel {
if (ctx->IsRuntime()) { if (ctx->IsRuntime()) {
PADDLE_ENFORCE_EQ(prior_box_dims.size(), 2, PADDLE_ENFORCE_EQ(prior_box_dims.size(), 2,
"The rank of Input of PriorBox must be 2"); "The rank of Input PriorBox must be 2");
PADDLE_ENFORCE_EQ(prior_box_dims[1], 4, PADDLE_ENFORCE_EQ(prior_box_dims[1], 4,
"The shape of PriorBox is [N, 4]"); "The shape of PriorBox is [N, 4]");
if (ctx->HasInput("PriorBoxVar")) { if (ctx->HasInput("PriorBoxVar")) {
...@@ -58,7 +58,7 @@ class BoxCoderOp : public framework::OperatorWithKernel { ...@@ -58,7 +58,7 @@ class BoxCoderOp : public framework::OperatorWithKernel {
int axis = ctx->Attrs().Get<int>("axis"); int axis = ctx->Attrs().Get<int>("axis");
if (code_type == BoxCodeType::kEncodeCenterSize) { if (code_type == BoxCodeType::kEncodeCenterSize) {
PADDLE_ENFORCE_EQ(target_box_dims.size(), 2, PADDLE_ENFORCE_EQ(target_box_dims.size(), 2,
"The rank of Input of TargetBox must be 2"); "The rank of Input TargetBox must be 2");
PADDLE_ENFORCE_EQ(target_box_dims[1], 4, PADDLE_ENFORCE_EQ(target_box_dims[1], 4,
"The shape of TargetBox is [M, 4]"); "The shape of TargetBox is [M, 4]");
ctx->SetOutputDim( ctx->SetOutputDim(
...@@ -66,7 +66,7 @@ class BoxCoderOp : public framework::OperatorWithKernel { ...@@ -66,7 +66,7 @@ class BoxCoderOp : public framework::OperatorWithKernel {
framework::make_ddim({target_box_dims[0], prior_box_dims[0], 4})); framework::make_ddim({target_box_dims[0], prior_box_dims[0], 4}));
} else if (code_type == BoxCodeType::kDecodeCenterSize) { } else if (code_type == BoxCodeType::kDecodeCenterSize) {
PADDLE_ENFORCE_EQ(target_box_dims.size(), 3, PADDLE_ENFORCE_EQ(target_box_dims.size(), 3,
"The rank of Input of TargetBox must be 3"); "The rank of Input TargetBox must be 3");
if (axis == 0) { if (axis == 0) {
PADDLE_ENFORCE_EQ(target_box_dims[1], prior_box_dims[0]); PADDLE_ENFORCE_EQ(target_box_dims[1], prior_box_dims[0]);
} else if (axis == 1) { } else if (axis == 1) {
...@@ -126,8 +126,11 @@ class BoxCoderOpMaker : public framework::OpProtoAndCheckerMaker { ...@@ -126,8 +126,11 @@ class BoxCoderOpMaker : public framework::OpProtoAndCheckerMaker {
"whether treat the priorbox as a noramlized box") "whether treat the priorbox as a noramlized box")
.SetDefault(true); .SetDefault(true);
AddAttr<int>("axis", AddAttr<int>("axis",
"(int, default 1)" "(int, default 0)"
"which axis to broadcast for box decode, it is only valid" "which axis in PriorBox to broadcast for box decode,"
"for example, if axis is 0 and TargetBox has shape"
"[N, M, 4] and PriorBox has shape [M, 4], then PriorBox "
"will broadcast to [N, M, 4] for decoding. It is only valid"
"when code type is decode_center_size") "when code type is decode_center_size")
.SetDefault(0) .SetDefault(0)
.InEnum({0, 1}); .InEnum({0, 1});
......
...@@ -79,10 +79,7 @@ __global__ void DecodeCenterSizeKernel(const T* prior_box_data, ...@@ -79,10 +79,7 @@ __global__ void DecodeCenterSizeKernel(const T* prior_box_data,
if (idx < row * col) { if (idx < row * col) {
const int col_idx = idx % col; const int col_idx = idx % col;
const int row_idx = idx / col; const int row_idx = idx / col;
if (axis == 0) prior_box_offset = axis == 0 ? col_idx * len : row_idx * len;
prior_box_offset = col_idx * len;
else if (axis == 1)
prior_box_offset = row_idx * len;
T prior_box_width = prior_box_data[prior_box_offset + 2] - T prior_box_width = prior_box_data[prior_box_offset + 2] -
prior_box_data[prior_box_offset] + prior_box_data[prior_box_offset] +
(normalized == false); (normalized == false);
...@@ -98,10 +95,7 @@ __global__ void DecodeCenterSizeKernel(const T* prior_box_data, ...@@ -98,10 +95,7 @@ __global__ void DecodeCenterSizeKernel(const T* prior_box_data,
if (prior_box_var_data) { if (prior_box_var_data) {
int prior_var_offset = 0; int prior_var_offset = 0;
if (prior_box_var_size == 2) { if (prior_box_var_size == 2) {
if (axis == 0) prior_var_offset = axis == 0 ? col_idx * len : row_idx * len;
prior_var_offset = col_idx * len;
else if (axis == 1)
prior_var_offset = row_idx * len;
} }
target_box_width = exp(prior_box_var_data[prior_var_offset + 2] * target_box_width = exp(prior_box_var_data[prior_var_offset + 2] *
target_box_data[idx * len + 2]) * target_box_data[idx * len + 2]) *
......
...@@ -342,8 +342,8 @@ def box_coder(prior_box, ...@@ -342,8 +342,8 @@ def box_coder(prior_box,
target_box, target_box,
code_type="encode_center_size", code_type="encode_center_size",
box_normalized=True, box_normalized=True,
axis=0, name=None,
name=None): axis=0):
""" """
${comment} ${comment}
......
...@@ -21,121 +21,80 @@ import math ...@@ -21,121 +21,80 @@ import math
from op_test import OpTest from op_test import OpTest
def box_coder(target_box, def box_decoder(t_box, p_box, pb_v, output_box, norm, axis=0):
prior_box, pb_w = p_box[:, 2] - p_box[:, 0] + (norm == False)
prior_box_var, pb_h = p_box[:, 3] - p_box[:, 1] + (norm == False)
output_box, pb_x = pb_w * 0.5 + p_box[:, 0]
code_type, pb_y = pb_h * 0.5 + p_box[:, 1]
box_normalized, shape = (1, p_box.shape[0]) if axis == 0 else (p_box.shape[0], 1)
axis=0):
prior_box_width = prior_box[:, 2] - prior_box[:, 0] + \ pb_w = pb_w.reshape(shape)
(box_normalized==False) pb_h = pb_h.reshape(shape)
prior_box_height = prior_box[:, 3] - prior_box[:, 1] + \ pb_x = pb_x.reshape(shape)
(box_normalized==False) pb_y = pb_y.reshape(shape)
prior_box_x = prior_box_width * 0.5 + prior_box[:, 0]
prior_box_y = prior_box_height * 0.5 + prior_box[:, 1] if pb_v.ndim == 2:
if axis == 0: pb_v = pb_v.reshape(1, pb_v.shape[0], pb_v.shape[1])
prior_box_width = prior_box_width.reshape(1, prior_box.shape[0]) if pb_v.ndim == 1:
prior_box_height = prior_box_height.reshape(1, prior_box.shape[0]) tb_x = pb_v[0] * t_box[:, :, 0] * pb_w + pb_x
prior_box_x = prior_box_x.reshape(1, prior_box.shape[0]) tb_y = pb_v[1] * t_box[:, :, 1] * pb_h + pb_y
prior_box_y = prior_box_y.reshape(1, prior_box.shape[0]) tb_w = np.exp(pb_v[2] * t_box[:, :, 2]) * pb_w
tb_h = np.exp(pb_v[3] * t_box[:, :, 3]) * pb_h
else: else:
prior_box_width = prior_box_width.reshape(prior_box.shape[0], 1) tb_x = pb_v[:, :, 0] * t_box[:, :, 0] * pb_w + pb_x
prior_box_height = prior_box_height.reshape(prior_box.shape[0], 1) tb_y = pb_v[:, :, 1] * t_box[:, :, 1] * pb_h + pb_y
prior_box_x = prior_box_x.reshape(prior_box.shape[0], 1) tb_w = np.exp(pb_v[:, :, 2] * t_box[:, :, 2]) * pb_w
prior_box_y = prior_box_y.reshape(prior_box.shape[0], 1) tb_h = np.exp(pb_v[:, :, 3] * t_box[:, :, 3]) * pb_h
if prior_box_var.ndim == 2: output_box[:, :, 0] = tb_x - tb_w / 2
prior_box_var = prior_box_var.reshape(1, prior_box_var.shape[0], output_box[:, :, 1] = tb_y - tb_h / 2
prior_box_var.shape[1]) output_box[:, :, 2] = tb_x + tb_w / 2 - (not norm)
if (code_type == "EncodeCenterSize"): output_box[:, :, 3] = tb_y + tb_h / 2 - (not norm)
target_box_x = ((target_box[:, 2] + target_box[:, 0]) / 2).reshape(
target_box.shape[0], 1)
target_box_y = ((target_box[:, 3] + target_box[:, 1]) / 2).reshape( def box_encoder(t_box, p_box, pb_v, output_box, norm):
target_box.shape[0], 1) pb_w = p_box[:, 2] - p_box[:, 0] + (norm == False)
target_box_width = ((target_box[:, 2] - target_box[:, 0])).reshape( pb_h = p_box[:, 3] - p_box[:, 1] + (norm == False)
target_box.shape[0], 1) pb_x = pb_w * 0.5 + p_box[:, 0]
target_box_height = ((target_box[:, 3] - target_box[:, 1])).reshape( pb_y = pb_h * 0.5 + p_box[:, 1]
target_box.shape[0], 1) shape = (1, p_box.shape[0])
if not box_normalized:
target_box_height = target_box_height + 1 pb_w = pb_w.reshape(shape)
target_box_width = target_box_width + 1 pb_h = pb_h.reshape(shape)
if prior_box_var.ndim == 1: pb_x = pb_x.reshape(shape)
output_box[:,:,0] = (target_box_x - prior_box_x) / \ pb_y = pb_y.reshape(shape)
prior_box_width / \
prior_box_var[0] if pb_v.ndim == 2:
output_box[:,:,1] = (target_box_y - prior_box_y) / \ pb_v = pb_v.reshape(1, pb_v.shape[0], pb_v.shape[1])
prior_box_height / \ tb_x = ((t_box[:, 2] + t_box[:, 0]) / 2).reshape(t_box.shape[0], 1)
prior_box_var[1] tb_y = ((t_box[:, 3] + t_box[:, 1]) / 2).reshape(t_box.shape[0], 1)
output_box[:,:,2] = np.log(np.fabs(target_box_width / \ tb_w = (t_box[:, 2] - t_box[:, 0]).reshape(t_box.shape[0], 1) + (not norm)
prior_box_width)) / \ tb_h = (t_box[:, 3] - t_box[:, 1]).reshape(t_box.shape[0], 1) + (not norm)
prior_box_var[2] if pb_v.ndim == 1:
output_box[:,:,3] = np.log(np.fabs(target_box_height / \ output_box[:, :, 0] = (tb_x - pb_x) / pb_w / pb_v[0]
prior_box_height)) / \ output_box[:, :, 1] = (tb_y - pb_y) / pb_h / pb_v[1]
prior_box_var[3] output_box[:, :, 2] = np.log(np.fabs(tb_w / pb_w)) / pb_v[2]
else: output_box[:, :, 3] = np.log(np.fabs(tb_h / pb_h)) / pb_v[3]
output_box[:,:,0] = (target_box_x - prior_box_x) / \ else:
prior_box_width / \ output_box[:, :, 0] = (tb_x - pb_x) / pb_w / pb_v[:, :, 0]
prior_box_var[:,:,0] output_box[:, :, 1] = (tb_y - pb_y) / pb_h / pb_v[:, :, 1]
output_box[:,:,1] = (target_box_y - prior_box_y) / \ output_box[:, :, 2] = np.log(np.fabs(tb_w / pb_w)) / pb_v[:, :, 2]
prior_box_height / \ output_box[:, :, 3] = np.log(np.fabs(tb_h / pb_h)) / pb_v[:, :, 3]
prior_box_var[:,:,1]
output_box[:,:,2] = np.log(np.fabs(target_box_width / \
prior_box_width)) / \ def batch_box_coder(p_box, pb_v, t_box, lod, code_type, norm, axis=0):
prior_box_var[:,:,2] n = t_box.shape[0]
output_box[:,:,3] = np.log(np.fabs(target_box_height / \ m = p_box.shape[0]
prior_box_height)) / \
prior_box_var[:,:,3]
elif (code_type == "DecodeCenterSize"):
if prior_box_var.ndim == 1:
target_box_x = prior_box_var[0] * target_box[:,:,0] * \
prior_box_width + prior_box_x
target_box_y = prior_box_var[1] * target_box[:,:,1] * \
prior_box_height + prior_box_y
target_box_width = np.exp(prior_box_var[2] * target_box[:,:,2]) * \
prior_box_width
target_box_height = np.exp(prior_box_var[3] * target_box[:,:,3]) * \
prior_box_height
else:
target_box_x = prior_box_var[:,:,0] * target_box[:,:,0] * \
prior_box_width + prior_box_x
target_box_y = prior_box_var[:,:,1] * target_box[:,:,1] * \
prior_box_height + prior_box_y
target_box_width = np.exp(prior_box_var[:,:,2] * \
target_box[:,:,2]) * prior_box_width
target_box_height = np.exp(prior_box_var[:,:,3] * \
target_box[:,:,3]) * prior_box_height
output_box[:, :, 0] = target_box_x - target_box_width / 2
output_box[:, :, 1] = target_box_y - target_box_height / 2
output_box[:, :, 2] = target_box_x + target_box_width / 2
output_box[:, :, 3] = target_box_y + target_box_height / 2
if not box_normalized:
output_box[:, :, 2] = output_box[:, :, 2] - 1
output_box[:, :, 3] = output_box[:, :, 3] - 1
def batch_box_coder(prior_box,
prior_box_var,
target_box,
lod,
code_type,
box_normalized,
axis=0):
n = target_box.shape[0]
m = prior_box.shape[0]
if code_type == "DecodeCenterSize": if code_type == "DecodeCenterSize":
m = target_box.shape[1] m = t_box.shape[1]
output_box = np.zeros((n, m, 4), dtype=np.float32) output_box = np.zeros((n, m, 4), dtype=np.float32)
cur_offset = 0 cur_offset = 0
for i in range(len(lod)): for i in range(len(lod)):
if (code_type == "EncodeCenterSize"): if (code_type == "EncodeCenterSize"):
box_coder(target_box[cur_offset:(cur_offset + lod[i]), :], box_encoder(t_box[cur_offset:(cur_offset + lod[i]), :], p_box, pb_v,
prior_box, prior_box_var, output_box[cur_offset:(cur_offset + lod[i]), :, :],
output_box[cur_offset:(cur_offset + lod[i]), :, :], norm)
code_type, box_normalized)
elif (code_type == "DecodeCenterSize"): elif (code_type == "DecodeCenterSize"):
box_coder(target_box, prior_box, prior_box_var, output_box, box_decoder(t_box, p_box, pb_v, output_box, norm, axis)
code_type, box_normalized, axis)
cur_offset += lod[i] cur_offset += lod[i]
return output_box return output_box
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册