// 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 #include #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, lite::Tensor* boxes, lite::Tensor* variances, const std::vector& min_size_, const std::vector& fixed_size_, const std::vector& fixed_ratio_, const std::vector& density_size_, const std::vector& max_size_, const std::vector& aspect_ratio_, const std::vector& variance_, int img_w_, int img_h_, float step_w_, float step_h_, float offset_, int prior_num_, bool is_flip_, bool is_clip_, const std::vector& order_, bool min_max_aspect_ratios_order); void prior_box(const lite::Tensor* input, const lite::Tensor* image, lite::Tensor* boxes, lite::Tensor* variances, const std::vector& min_size, const std::vector& max_size, const std::vector& aspect_ratio, const std::vector& variance, int img_w, int img_h, float step_w, float step_h, float offset, int prior_num, bool is_flip, bool is_clip, const std::vector& order, bool min_max_aspect_ratios_order); } // namespace math } // namespace arm } // namespace lite } // namespace paddle