box_clip_op.h 2.2 KB
Newer Older
J
jerrywgz 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/* Copyright (c) 2018 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>
14

J
jerrywgz 已提交
15 16
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/operators/detection/bbox_util.h"
17
#include "paddle/phi/kernels/funcs/math_function.h"
J
jerrywgz 已提交
18 19 20 21

namespace paddle {
namespace operators {

22
template <typename T, typename DeviceContext>
J
jerrywgz 已提交
23 24 25
class BoxClipKernel : public framework::OpKernel<T> {
 public:
  void Compute(const framework::ExecutionContext& context) const override {
26 27 28
    auto* input_box = context.Input<phi::DenseTensor>("Input");
    auto* im_info = context.Input<phi::DenseTensor>("ImInfo");
    auto* output_box = context.Output<phi::DenseTensor>("Output");
L
Leo Chen 已提交
29
    auto& dev_ctx = context.template device_context<phi::CPUContext>();
J
jerrywgz 已提交
30 31
    output_box->mutable_data<T>(context.GetPlace());
    if (input_box->lod().size()) {
32 33
      PADDLE_ENFORCE_EQ(input_box->lod().size(),
                        1UL,
34
                        platform::errors::InvalidArgument(
35 36 37 38
                            "Input(Input) of BoxClip only supports 1 level "
                            "of LoD. But received the "
                            "level = %d",
                            input_box->lod().size()));
J
jerrywgz 已提交
39 40 41 42
    }
    auto box_lod = input_box->lod().back();
    int64_t n = static_cast<int64_t>(box_lod.size() - 1);
    for (int i = 0; i < n; ++i) {
43 44 45 46
      phi::DenseTensor im_info_slice = im_info->Slice(i, i + 1);
      phi::DenseTensor box_slice = input_box->Slice(box_lod[i], box_lod[i + 1]);
      phi::DenseTensor output_slice =
          output_box->Slice(box_lod[i], box_lod[i + 1]);
J
jerrywgz 已提交
47 48 49 50 51 52 53
      ClipTiledBoxes<T>(dev_ctx, im_info_slice, box_slice, &output_slice);
    }
  }
};

}  // namespace operators
}  // namespace paddle