test_box_coder_op.py 10.9 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
#
# 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.

15 16
from __future__ import print_function

G
gaoyuan 已提交
17 18 19 20
import unittest
import numpy as np
import sys
import math
21
from op_test import OpTest
G
gaoyuan 已提交
22 23


J
jerrywgz 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
def box_coder(target_box,
              prior_box,
              prior_box_var,
              output_box,
              code_type,
              box_normalized,
              axis=0):
    prior_box_width = prior_box[:, 2] - prior_box[:, 0] + \
                      (box_normalized==False)
    prior_box_height = prior_box[:, 3] - prior_box[:, 1] + \
                      (box_normalized==False)
    prior_box_x = prior_box_width * 0.5 + prior_box[:, 0]
    prior_box_y = prior_box_height * 0.5 + prior_box[:, 1]
    if axis == 0:
        prior_box_width = prior_box_width.reshape(1, prior_box.shape[0])
        prior_box_height = prior_box_height.reshape(1, prior_box.shape[0])
        prior_box_x = prior_box_x.reshape(1, prior_box.shape[0])
        prior_box_y = prior_box_y.reshape(1, prior_box.shape[0])
    else:
        prior_box_width = prior_box_width.reshape(prior_box.shape[0], 1)
        prior_box_height = prior_box_height.reshape(prior_box.shape[0], 1)
        prior_box_x = prior_box_x.reshape(prior_box.shape[0], 1)
        prior_box_y = prior_box_y.reshape(prior_box.shape[0], 1)
    if prior_box_var.ndim == 2:
        prior_box_var = prior_box_var.reshape(1, prior_box_var.shape[0],
                                              prior_box_var.shape[1])
G
gaoyuan 已提交
50
    if (code_type == "EncodeCenterSize"):
G
gaoyuan 已提交
51 52 53 54 55 56 57 58
        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)
59 60 61
        if not box_normalized:
            target_box_height = target_box_height + 1
            target_box_width = target_box_width + 1
J
jerrywgz 已提交
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
        if prior_box_var.ndim == 1:
            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]
        else:
            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 已提交
88 89

    elif (code_type == "DecodeCenterSize"):
J
jerrywgz 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
        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
G
gaoyuan 已提交
108 109 110 111
        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
112 113 114
        if not box_normalized:
            output_box[:, :, 2] = output_box[:, :, 2] - 1
            output_box[:, :, 3] = output_box[:, :, 3] - 1
G
gaoyuan 已提交
115 116


J
jerrywgz 已提交
117 118 119 120 121 122 123
def batch_box_coder(prior_box,
                    prior_box_var,
                    target_box,
                    lod,
                    code_type,
                    box_normalized,
                    axis=0):
G
gaoyuan 已提交
124 125
    n = target_box.shape[0]
    m = prior_box.shape[0]
J
jerrywgz 已提交
126 127
    if code_type == "DecodeCenterSize":
        m = target_box.shape[1]
G
gaoyuan 已提交
128
    output_box = np.zeros((n, m, 4), dtype=np.float32)
129 130
    cur_offset = 0
    for i in range(len(lod)):
Y
Yuan Gao 已提交
131
        if (code_type == "EncodeCenterSize"):
132 133 134
            box_coder(target_box[cur_offset:(cur_offset + lod[i]), :],
                      prior_box, prior_box_var,
                      output_box[cur_offset:(cur_offset + lod[i]), :, :],
135
                      code_type, box_normalized)
Y
Yuan Gao 已提交
136
        elif (code_type == "DecodeCenterSize"):
J
jerrywgz 已提交
137 138
            box_coder(target_box, prior_box, prior_box_var, output_box,
                      code_type, box_normalized, axis)
139
        cur_offset += lod[i]
G
gaoyuan 已提交
140 141 142 143 144 145 146 147 148
    return output_box


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

    def setUp(self):
        self.op_type = "box_coder"
149
        lod = [[1, 1, 1, 1, 1]]
G
gaoyuan 已提交
150 151
        prior_box = np.random.random((10, 4)).astype('float32')
        prior_box_var = np.random.random((10, 4)).astype('float32')
Y
Yuan Gao 已提交
152
        target_box = np.random.random((5, 10, 4)).astype('float32')
G
gaoyuan 已提交
153
        code_type = "DecodeCenterSize"
154
        box_normalized = False
J
jerrywgz 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
        output_box = batch_box_coder(prior_box, prior_box_var, target_box,
                                     lod[0], code_type, box_normalized)
        self.inputs = {
            'PriorBox': prior_box,
            'PriorBoxVar': prior_box_var,
            'TargetBox': target_box,
        }
        self.attrs = {
            'code_type': 'decode_center_size',
            'box_normalized': False
        }
        self.outputs = {'OutputBox': output_box}


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

    def setUp(self):
        self.op_type = "box_coder"
        lod = [[1, 1, 1, 1, 1]]
        prior_box = np.random.random((6, 4)).astype('float32')
        prior_box_var = np.random.random((4)).astype('float32')
        target_box = np.random.random((3, 6, 4)).astype('float32')
        code_type = "DecodeCenterSize"
        box_normalized = False
G
gaoyuan 已提交
181
        output_box = batch_box_coder(prior_box, prior_box_var, target_box,
182
                                     lod[0], code_type, box_normalized)
G
gaoyuan 已提交
183 184 185 186 187 188

        self.inputs = {
            'PriorBox': prior_box,
            'PriorBoxVar': prior_box_var,
            'TargetBox': target_box,
        }
189 190 191
        self.attrs = {
            'code_type': 'decode_center_size',
            'box_normalized': False
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
        }
        self.outputs = {'OutputBox': output_box}


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

    def setUp(self):
        self.op_type = "box_coder"
        lod = [[0, 1, 2, 3, 4, 5]]
        prior_box = np.random.random((10, 4)).astype('float32')
        prior_box_var = np.ones((10, 4)).astype('float32')
        target_box = np.random.random((5, 10, 4)).astype('float32')
        code_type = "DecodeCenterSize"
        box_normalized = False
        output_box = batch_box_coder(prior_box, prior_box_var, target_box,
                                     lod[0], code_type, box_normalized)

        self.inputs = {
            'PriorBox': prior_box,
            'TargetBox': target_box,
        }
        self.attrs = {
            'code_type': 'decode_center_size',
            'box_normalized': False
218
        }
G
gaoyuan 已提交
219 220 221 222 223 224 225 226 227
        self.outputs = {'OutputBox': output_box}


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

    def setUp(self):
        self.op_type = "box_coder"
228
        lod = [[4, 8, 8]]
G
gaoyuan 已提交
229 230 231 232
        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"
233
        box_normalized = True
G
gaoyuan 已提交
234
        output_box = batch_box_coder(prior_box, prior_box_var, target_box,
235
                                     lod[0], code_type, box_normalized)
G
gaoyuan 已提交
236 237 238 239 240 241

        self.inputs = {
            'PriorBox': prior_box,
            'PriorBoxVar': prior_box_var,
            'TargetBox': (target_box, lod),
        }
242
        self.attrs = {'code_type': 'encode_center_size', 'box_normalized': True}
G
gaoyuan 已提交
243 244 245
        self.outputs = {'OutputBox': output_box}


J
jerrywgz 已提交
246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
class TestBoxCoderOpWithAxis(OpTest):
    def test_check_output(self):
        self.check_output()

    def setUp(self):
        self.op_type = "box_coder"
        lod = [[1, 1, 1, 1, 1]]
        prior_box = np.random.random((5, 4)).astype('float32')
        prior_box_var = np.random.random((4)).astype('float32')
        target_box = np.random.random((5, 6, 4)).astype('float32')
        code_type = "DecodeCenterSize"
        box_normalized = False
        axis = 1
        output_box = batch_box_coder(prior_box, prior_box_var, target_box,
                                     lod[0], code_type, box_normalized, axis)

        self.inputs = {
            'PriorBox': prior_box,
            'PriorBoxVar': prior_box_var,
            'TargetBox': target_box,
        }
        self.attrs = {
            'code_type': 'decode_center_size',
            'box_normalized': False,
            'axis': axis
        }
        self.outputs = {'OutputBox': output_box}


G
gaoyuan 已提交
275 276
if __name__ == '__main__':
    unittest.main()