test_box_coder_op.py 6.0 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
G
gaoyuan 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import unittest
import numpy as np
import sys
import math
from op_test import OpTest


22 23
def box_coder(target_box, prior_box, prior_box_var, output_box, code_type,
              box_normalized):
G
gaoyuan 已提交
24 25 26 27 28 29 30 31 32 33
    prior_box_x = (
        (prior_box[:, 2] + prior_box[:, 0]) / 2).reshape(1, prior_box.shape[0])
    prior_box_y = (
        (prior_box[:, 3] + prior_box[:, 1]) / 2).reshape(1, prior_box.shape[0])
    prior_box_width = (
        (prior_box[:, 2] - prior_box[:, 0])).reshape(1, prior_box.shape[0])
    prior_box_height = (
        (prior_box[:, 3] - prior_box[:, 1])).reshape(1, prior_box.shape[0])
    prior_box_var = prior_box_var.reshape(1, prior_box_var.shape[0],
                                          prior_box_var.shape[1])
34 35 36
    if not box_normalized:
        prior_box_height = prior_box_height + 1
        prior_box_width = prior_box_width + 1
G
gaoyuan 已提交
37 38

    if (code_type == "EncodeCenterSize"):
G
gaoyuan 已提交
39 40 41 42 43 44 45 46
        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(
            target_box.shape[0], 1)
        target_box_width = ((target_box[:, 2] - target_box[:, 0])).reshape(
            target_box.shape[0], 1)
        target_box_height = ((target_box[:, 3] - target_box[:, 1])).reshape(
            target_box.shape[0], 1)
47 48 49
        if not box_normalized:
            target_box_height = target_box_height + 1
            target_box_width = target_box_width + 1
G
gaoyuan 已提交
50 51 52 53 54 55 56 57 58

        output_box[:,:,0] = (target_box_x - prior_box_x) / prior_box_width / \
                prior_box_var[:,:,0]
        output_box[:,:,1] = (target_box_y - prior_box_y) / prior_box_height / \
                prior_box_var[:,:,1]
        output_box[:,:,2] = np.log(np.fabs(target_box_width / prior_box_width)) / \
                prior_box_var[:,:,2]
        output_box[:,:,3] = np.log(np.fabs(target_box_height / prior_box_height)) / \
                prior_box_var[:,:,3]
G
gaoyuan 已提交
59 60

    elif (code_type == "DecodeCenterSize"):
G
gaoyuan 已提交
61 62 63 64 65 66 67 68
        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
Y
Yuan Gao 已提交
69

G
gaoyuan 已提交
70 71 72 73
        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
74 75 76
        if not box_normalized:
            output_box[:, :, 2] = output_box[:, :, 2] - 1
            output_box[:, :, 3] = output_box[:, :, 3] - 1
G
gaoyuan 已提交
77 78


79 80
def batch_box_coder(prior_box, prior_box_var, target_box, lod, code_type,
                    box_normalized):
G
gaoyuan 已提交
81 82 83 84
    n = target_box.shape[0]
    m = prior_box.shape[0]
    output_box = np.zeros((n, m, 4), dtype=np.float32)
    for i in range(len(lod) - 1):
Y
Yuan Gao 已提交
85 86 87
        if (code_type == "EncodeCenterSize"):
            box_coder(target_box[lod[i]:lod[i + 1], :], prior_box,
                      prior_box_var, output_box[lod[i]:lod[i + 1], :, :],
88
                      code_type, box_normalized)
Y
Yuan Gao 已提交
89 90 91
        elif (code_type == "DecodeCenterSize"):
            box_coder(target_box[lod[i]:lod[i + 1], :, :], prior_box,
                      prior_box_var, output_box[lod[i]:lod[i + 1], :, :],
92
                      code_type, box_normalized)
G
gaoyuan 已提交
93 94 95 96 97 98 99 100 101
    return output_box


class TestBoxCoderOp(OpTest):
    def test_check_output(self):
        self.check_output()

    def setUp(self):
        self.op_type = "box_coder"
Y
Yuan Gao 已提交
102
        lod = [[0, 1, 2, 3, 4, 5]]
G
gaoyuan 已提交
103 104
        prior_box = np.random.random((10, 4)).astype('float32')
        prior_box_var = np.random.random((10, 4)).astype('float32')
Y
Yuan Gao 已提交
105
        target_box = np.random.random((5, 10, 4)).astype('float32')
G
gaoyuan 已提交
106
        code_type = "DecodeCenterSize"
107
        box_normalized = False
G
gaoyuan 已提交
108
        output_box = batch_box_coder(prior_box, prior_box_var, target_box,
109
                                     lod[0], code_type, box_normalized)
G
gaoyuan 已提交
110 111 112 113 114 115

        self.inputs = {
            'PriorBox': prior_box,
            'PriorBoxVar': prior_box_var,
            'TargetBox': target_box,
        }
116 117 118 119
        self.attrs = {
            'code_type': 'decode_center_size',
            'box_normalized': False
        }
G
gaoyuan 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133
        self.outputs = {'OutputBox': output_box}


class TestBoxCoderOpWithLoD(OpTest):
    def test_check_output(self):
        self.check_output()

    def setUp(self):
        self.op_type = "box_coder"
        lod = [[0, 4, 12, 20]]
        prior_box = np.random.random((10, 4)).astype('float32')
        prior_box_var = np.random.random((10, 4)).astype('float32')
        target_box = np.random.random((20, 4)).astype('float32')
        code_type = "EncodeCenterSize"
134
        box_normalized = True
G
gaoyuan 已提交
135
        output_box = batch_box_coder(prior_box, prior_box_var, target_box,
136
                                     lod[0], code_type, box_normalized)
G
gaoyuan 已提交
137 138 139 140 141 142

        self.inputs = {
            'PriorBox': prior_box,
            'PriorBoxVar': prior_box_var,
            'TargetBox': (target_box, lod),
        }
143
        self.attrs = {'code_type': 'encode_center_size', 'box_normalized': True}
G
gaoyuan 已提交
144 145 146 147 148
        self.outputs = {'OutputBox': output_box}


if __name__ == '__main__':
    unittest.main()