prior_box.h 2.5 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
// Copyright (c) 2019 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.

#pragma once

#include <string>
#include <vector>
#include "lite/core/op_lite.h"

namespace paddle {
namespace lite {
namespace arm {
namespace math {

void density_prior_box(const lite::Tensor* input,
                       const lite::Tensor* image,
Y
yongqiang 已提交
28 29
                       lite::Tensor* boxes,
                       lite::Tensor* variances,
Y
Yan Chunwei 已提交
30 31 32
                       const std::vector<float>& min_size_,
                       const std::vector<float>& fixed_size_,
                       const std::vector<float>& fixed_ratio_,
T
TianXiaogang 已提交
33
                       const std::vector<int>& density_size_,
Y
Yan Chunwei 已提交
34 35 36 37 38 39 40 41 42 43 44
                       const std::vector<float>& max_size_,
                       const std::vector<float>& aspect_ratio_,
                       const std::vector<float>& variance_,
                       int img_w_,
                       int img_h_,
                       float step_w_,
                       float step_h_,
                       float offset_,
                       int prior_num_,
                       bool is_flip_,
                       bool is_clip_,
45 46
                       const std::vector<std::string>& order_,
                       bool min_max_aspect_ratios_order);
Y
Yan Chunwei 已提交
47 48 49

void prior_box(const lite::Tensor* input,
               const lite::Tensor* image,
Y
yongqiang 已提交
50 51
               lite::Tensor* boxes,
               lite::Tensor* variances,
Y
Yan Chunwei 已提交
52 53 54 55 56 57 58 59 60 61 62 63
               const std::vector<float>& min_size,
               const std::vector<float>& max_size,
               const std::vector<float>& aspect_ratio,
               const std::vector<float>& variance,
               int img_w,
               int img_h,
               float step_w,
               float step_h,
               float offset,
               int prior_num,
               bool is_flip,
               bool is_clip,
64 65
               const std::vector<std::string>& order,
               bool min_max_aspect_ratios_order);
Y
Yan Chunwei 已提交
66 67 68 69 70

}  // namespace math
}  // namespace arm
}  // namespace lite
}  // namespace paddle