detection_output_op.cc 4.0 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
S
sweetsky0901 已提交
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.
Indicesou 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. */

Y
Yi Wang 已提交
15
#include "paddle/fluid/operators/detection_output_op.h"
S
sweetsky0901 已提交
16 17 18
namespace paddle {
namespace operators {

S
sweetsky0901 已提交
19
class DetectionOutputOpMaker : public framework::OpProtoAndCheckerMaker {
S
sweetsky0901 已提交
20
 public:
S
sweetsky0901 已提交
21
  DetectionOutputOpMaker(OpProto* proto, OpAttrChecker* op_checker)
S
sweetsky0901 已提交
22
      : OpProtoAndCheckerMaker(proto, op_checker) {
S
sweetsky0901 已提交
23
    AddInput("Loc",
S
sweetsky0901 已提交
24 25
             "(Tensor) The input tensor of detection_output operator."
             "The input predict locations"
S
sweetsky0901 已提交
26 27 28 29 30
             "The format of input tensor is kNCHW. Where K is priorbox point "
             "numbers,"
             "N is How many boxes are there on each point, "
             "C is 4, H and W both are 1.");
    AddInput("Conf",
S
sweetsky0901 已提交
31 32
             "(Tensor) The input tensor of detection_output operator."
             "The input priorbox confidence."
S
sweetsky0901 已提交
33 34 35 36 37
             "The format of input tensor is kNCHW. Where K is priorbox point "
             "numbers,"
             "N is How many boxes are there on each point, "
             "C is the number of classes, H and W both are 1.");
    AddInput("PriorBox",
S
sweetsky0901 已提交
38
             "(Tensor) The input tensor of detection_output operator."
S
sweetsky0901 已提交
39 40
             "The format of input tensor is the position and variance "
             "of the boxes");
S
sweetsky0901 已提交
41
    AddOutput("Out",
S
sweetsky0901 已提交
42
              "(Tensor) The output tensor of detection_output operator.");
S
sweetsky0901 已提交
43 44
    AddAttr<int>("background_label_id", "(int), The background class index.");
    AddAttr<int>("num_classes", "(int), The number of the classification.");
S
sweetsky0901 已提交
45
    AddAttr<float>("nms_threshold",
S
sweetsky0901 已提交
46
                   "(float), The Non-maximum suppression threshold.");
S
sweetsky0901 已提交
47
    AddAttr<float>("confidence_threshold",
S
sweetsky0901 已提交
48 49 50 51
                   "(float), The classification confidence threshold.");
    AddAttr<int>("top_k", "(int), The bbox number kept of the layer’s output.");
    AddAttr<int>("nms_top_k",
                 "(int), The bbox number kept of the NMS’s output.");
S
sweetsky0901 已提交
52
    AddComment(R"DOC(
S
sweetsky0901 已提交
53
          detection output for SSD(single shot multibox detector)
S
sweetsky0901 已提交
54 55 56
          Apply the NMS to the output of network and compute the predict
          bounding box location. The output’s shape of this layer could
          be zero if there is no valid bounding box.
S
sweetsky0901 已提交
57 58 59 60
        )DOC");
  }
};

S
sweetsky0901 已提交
61
class DetectionOutputOp : public framework::OperatorWithKernel {
S
sweetsky0901 已提交
62 63 64
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;
  void InferShape(framework::InferShapeContext* ctx) const override {
65
    PADDLE_ENFORCE(ctx->HasInput("Loc"),
S
sweetsky0901 已提交
66
                   "Input(X) of DetectionOutputOp"
67 68
                   "should not be null.");
    PADDLE_ENFORCE(ctx->HasInput("Conf"),
S
sweetsky0901 已提交
69
                   "Input(X) of DetectionOutputOp"
70 71
                   "should not be null.");
    PADDLE_ENFORCE(ctx->HasInput("PriorBox"),
S
sweetsky0901 已提交
72
                   "Input(X) of DetectionOutputOp"
S
sweetsky0901 已提交
73 74
                   "should not be null.");
    PADDLE_ENFORCE(ctx->HasOutput("Out"),
S
sweetsky0901 已提交
75
                   "Output(Out) of DetectionOutputOp should not be null.");
76
    std::vector<int64_t> output_shape({1, 7});
S
sweetsky0901 已提交
77 78 79 80 81 82 83
    ctx->SetOutputDim("Out", framework::make_ddim(output_shape));
  }
};
}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
S
sweetsky0901 已提交
84 85
REGISTER_OP_WITHOUT_GRADIENT(detection_output, ops::DetectionOutputOp,
                             ops::DetectionOutputOpMaker);
S
sweetsky0901 已提交
86 87
REGISTER_OP_CPU_KERNEL(
    detection_output,
S
sweetsky0901 已提交
88 89
    ops::DetectionOutputKernel<paddle::platform::CPUDeviceContext, float>,
    ops::DetectionOutputKernel<paddle::platform::CPUDeviceContext, double>);