priorbox.py 1.5 KB
Newer Older
S
SunAhong1993 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# Copyright (c) 2020  PaddlePaddle Authors. All Rights Reserved.
#
# 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 paddle
import paddle.fluid as fluid

S
SunAhong1993 已提交
18

S
SunAhong1993 已提交
19
class PriorBox(object):
S
SunAhong1993 已提交
20 21
    def __init__(self, min_sizes, max_sizes, aspect_ratios, variance, flip,
                 clip, steps, offset, min_max_aspect_ratios_order):
S
SunAhong1993 已提交
22 23 24 25 26 27 28 29 30
        self.priorbox_layer_attrs = {
            "min_sizes": min_sizes,
            "max_sizes": max_sizes,
            "aspect_ratios": aspect_ratios,
            "variance": variance,
            "flip": flip,
            "clip": clip,
            "steps": steps,
            "offset": offset,
S
SunAhong1993 已提交
31 32 33
            "min_max_aspect_ratios_order": min_max_aspect_ratios_order
        }

S
SunAhong1993 已提交
34
    def __call__(self, x0, x1):
S
SunAhong1993 已提交
35 36
        box, var = fluid.layers.prior_box(
            input=x0, image=x1, **self.priorbox_layer_attrs)
S
SunAhong1993 已提交
37 38 39
        box = paddle.reshape(x=box, shape=[1, 1, -1])
        var = paddle.reshape(x=var, shape=[1, 1, -1])
        out = paddle.concat(x=[box, var], axis=1)
S
SunAhong1993 已提交
40
        return out