yolo_box_op.cc 11.3 KB
Newer Older
D
dengkaipeng 已提交
1
/* Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
D
dengkaipeng 已提交
2 3 4 5 6 7 8 9 10 11
   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. */

H
hong 已提交
12
#include "paddle/fluid/framework/infershape_utils.h"
D
dengkaipeng 已提交
13
#include "paddle/fluid/framework/op_registry.h"
14
#include "paddle/fluid/framework/op_version_registry.h"
H
hong 已提交
15
#include "paddle/phi/infermeta/binary.h"
D
dengkaipeng 已提交
16 17 18 19 20 21 22 23

namespace paddle {
namespace operators {

class YoloBoxOp : public framework::OperatorWithKernel {
 public:
  using framework::OperatorWithKernel::OperatorWithKernel;
  void InferShape(framework::InferShapeContext* ctx) const override {
X
xiaoting 已提交
24 25 26 27
    OP_INOUT_CHECK(ctx->HasInput("X"), "Input", "X", "YoloBoxOp");
    OP_INOUT_CHECK(ctx->HasInput("ImgSize"), "Input", "ImgSize", "YoloBoxOp");
    OP_INOUT_CHECK(ctx->HasOutput("Boxes"), "Output", "Boxes", "YoloBoxOp");
    OP_INOUT_CHECK(ctx->HasOutput("Scores"), "Output", "Scores", "YoloBoxOp");
D
dengkaipeng 已提交
28 29

    auto dim_x = ctx->GetInputDim("X");
30
    auto dim_imgsize = ctx->GetInputDim("ImgSize");
D
dengkaipeng 已提交
31 32 33
    auto anchors = ctx->Attrs().Get<std::vector<int>>("anchors");
    int anchor_num = anchors.size() / 2;
    auto class_num = ctx->Attrs().Get<int>("class_num");
34 35
    auto iou_aware = ctx->Attrs().Get<bool>("iou_aware");
    auto iou_aware_factor = ctx->Attrs().Get<float>("iou_aware_factor");
D
dengkaipeng 已提交
36

37
    PADDLE_ENFORCE_EQ(
38 39
        dim_x.size(),
        4,
40 41 42
        platform::errors::InvalidArgument("Input(X) should be a 4-D tensor."
                                          "But received X dimension(%s)",
                                          dim_x.size()));
43 44
    if (iou_aware) {
      PADDLE_ENFORCE_EQ(
45 46
          dim_x[1],
          anchor_num * (6 + class_num),
47 48 49 50 51
          platform::errors::InvalidArgument(
              "Input(X) dim[1] should be equal to (anchor_mask_number * (6 "
              "+ class_num)) while iou_aware is true."
              "But received dim[1](%s) != (anchor_mask_number * "
              "(6+class_num)(%s).",
52 53
              dim_x[1],
              anchor_num * (6 + class_num)));
54
      PADDLE_ENFORCE_GE(
55 56
          iou_aware_factor,
          0,
57 58 59 60 61
          platform::errors::InvalidArgument(
              "Attr(iou_aware_factor) should greater than or equal to 0."
              "But received iou_aware_factor (%s)",
              iou_aware_factor));
      PADDLE_ENFORCE_LE(
62 63
          iou_aware_factor,
          1,
64 65 66 67 68 69
          platform::errors::InvalidArgument(
              "Attr(iou_aware_factor) should less than or equal to 1."
              "But received iou_aware_factor (%s)",
              iou_aware_factor));
    } else {
      PADDLE_ENFORCE_EQ(
70 71
          dim_x[1],
          anchor_num * (5 + class_num),
72 73 74 75 76
          platform::errors::InvalidArgument(
              "Input(X) dim[1] should be equal to (anchor_mask_number * (5 "
              "+ class_num))."
              "But received dim[1](%s) != (anchor_mask_number * "
              "(5+class_num)(%s).",
77 78
              dim_x[1],
              anchor_num * (5 + class_num)));
79
    }
80 81
    PADDLE_ENFORCE_EQ(dim_imgsize.size(),
                      2,
X
xiaoting 已提交
82 83 84 85
                      platform::errors::InvalidArgument(
                          "Input(ImgSize) should be a 2-D tensor."
                          "But received Imgsize size(%s)",
                          dim_imgsize.size()));
86 87
    if ((dim_imgsize[0] > 0 && dim_x[0] > 0) || ctx->IsRuntime()) {
      PADDLE_ENFORCE_EQ(
88 89
          dim_imgsize[0],
          dim_x[0],
90 91 92
          platform::errors::InvalidArgument(
              "Input(ImgSize) dim[0] and Input(X) dim[0] should be same."));
    }
X
xiaoting 已提交
93
    PADDLE_ENFORCE_EQ(
94 95
        dim_imgsize[1],
        2,
X
xiaoting 已提交
96 97 98
        platform::errors::InvalidArgument("Input(ImgSize) dim[1] should be 2."
                                          "But received imgsize dim[1](%s).",
                                          dim_imgsize[1]));
99 100
    PADDLE_ENFORCE_GT(anchors.size(),
                      0,
X
xiaoting 已提交
101 102 103 104
                      platform::errors::InvalidArgument(
                          "Attr(anchors) length should be greater than 0."
                          "But received anchors length(%s).",
                          anchors.size()));
105 106
    PADDLE_ENFORCE_EQ(anchors.size() % 2,
                      0,
X
xiaoting 已提交
107 108 109 110
                      platform::errors::InvalidArgument(
                          "Attr(anchors) length should be even integer."
                          "But received anchors length (%s)",
                          anchors.size()));
111 112
    PADDLE_ENFORCE_GT(class_num,
                      0,
X
xiaoting 已提交
113 114 115 116
                      platform::errors::InvalidArgument(
                          "Attr(class_num) should be an integer greater than 0."
                          "But received class_num (%s)",
                          class_num));
D
dengkaipeng 已提交
117

118 119 120 121 122 123
    int box_num;
    if ((dim_x[2] > 0 && dim_x[3] > 0) || ctx->IsRuntime()) {
      box_num = dim_x[2] * dim_x[3] * anchor_num;
    } else {
      box_num = -1;
    }
D
dengkaipeng 已提交
124
    std::vector<int64_t> dim_boxes({dim_x[0], box_num, 4});
125
    ctx->SetOutputDim("Boxes", phi::make_ddim(dim_boxes));
D
dengkaipeng 已提交
126 127

    std::vector<int64_t> dim_scores({dim_x[0], box_num, class_num});
128
    ctx->SetOutputDim("Scores", phi::make_ddim(dim_scores));
D
dengkaipeng 已提交
129 130 131 132 133
  }

 protected:
  framework::OpKernelType GetExpectedKernelType(
      const framework::ExecutionContext& ctx) const override {
134 135
    return framework::OpKernelType(
        OperatorWithKernel::IndicateVarDataType(ctx, "X"), ctx.GetPlace());
D
dengkaipeng 已提交
136 137 138 139 140 141 142
  }
};

class YoloBoxOpMaker : public framework::OpProtoAndCheckerMaker {
 public:
  void Make() override {
    AddInput("X",
D
dengkaipeng 已提交
143 144
             "The input tensor of YoloBox operator is a 4-D tensor with "
             "shape of [N, C, H, W]. The second dimension(C) stores "
D
dengkaipeng 已提交
145 146
             "box locations, confidence score and classification one-hot "
             "keys of each anchor box. Generally, X should be the output "
D
dengkaipeng 已提交
147
             "of YOLOv3 network.");
148 149
    AddInput("ImgSize",
             "The image size tensor of YoloBox operator, "
D
dengkaipeng 已提交
150
             "This is a 2-D tensor with shape of [N, 2]. This tensor holds "
D
dengkaipeng 已提交
151
             "height and width of each input image used for resizing output "
152
             "box in input image scale.");
D
dengkaipeng 已提交
153 154
    AddOutput("Boxes",
              "The output tensor of detection boxes of YoloBox operator, "
D
dengkaipeng 已提交
155 156
              "This is a 3-D tensor with shape of [N, M, 4], N is the "
              "batch num, M is output box number, and the 3rd dimension "
D
dengkaipeng 已提交
157 158
              "stores [xmin, ymin, xmax, ymax] coordinates of boxes.");
    AddOutput("Scores",
D
dengkaipeng 已提交
159 160 161 162
              "The output tensor of detection boxes scores of YoloBox "
              "operator, This is a 3-D tensor with shape of "
              "[N, M, :attr:`class_num`], N is the batch num, M is "
              "output box number.");
D
dengkaipeng 已提交
163 164 165 166 167 168 169 170 171 172 173 174

    AddAttr<int>("class_num", "The number of classes to predict.");
    AddAttr<std::vector<int>>("anchors",
                              "The anchor width and height, "
                              "it will be parsed pair by pair.")
        .SetDefault(std::vector<int>{});
    AddAttr<int>("downsample_ratio",
                 "The downsample ratio from network input to YoloBox operator "
                 "input, so 32, 16, 8 should be set for the first, second, "
                 "and thrid YoloBox operators.")
        .SetDefault(32);
    AddAttr<float>("conf_thresh",
D
dengkaipeng 已提交
175 176
                   "The confidence scores threshold of detection boxes. "
                   "Boxes with confidence scores under threshold should "
D
dengkaipeng 已提交
177 178
                   "be ignored.")
        .SetDefault(0.01);
179 180 181 182
    AddAttr<bool>("clip_bbox",
                  "Whether clip output bonding box in Input(ImgSize) "
                  "boundary. Default true.")
        .SetDefault(true);
183 184 185 186
    AddAttr<float>("scale_x_y",
                   "Scale the center point of decoded bounding "
                   "box. Default 1.0")
        .SetDefault(1.);
187 188 189 190
    AddAttr<bool>("iou_aware", "Whether use iou aware. Default false.")
        .SetDefault(false);
    AddAttr<float>("iou_aware_factor", "iou aware factor. Default 0.5.")
        .SetDefault(0.5);
D
dengkaipeng 已提交
191
    AddComment(R"DOC(
D
dengkaipeng 已提交
192
         This operator generates YOLO detection boxes from output of YOLOv3 network.
193

D
dengkaipeng 已提交
194
         The output of previous network is in shape [N, C, H, W], while H and W
195
         should be the same, H and W specify the grid size, each grid point predict
D
dengkaipeng 已提交
196
         given number boxes, this given number, which following will be represented as S,
D
dengkaipeng 已提交
197
         is specified by the number of anchors. In the second dimension(the channel
198 199
         dimension), C should be equal to S * (5 + class_num) if :attr:`iou_aware` is false,
         otherwise C should be equal to S * (6 + class_num). class_num is the object
200 201 202
         category number of source dataset(such as 80 in coco dataset), so the
         second(channel) dimension, apart from 4 box location coordinates x, y, w, h,
         also includes confidence score of the box and class one-hot key of each anchor
D
dengkaipeng 已提交
203 204
         box.

205
         Assume the 4 location coordinates are :math:`t_x, t_y, t_w, t_h`, the box
D
dengkaipeng 已提交
206
         predictions should be as follows:
D
dengkaipeng 已提交
207 208

         $$
D
dengkaipeng 已提交
209
         b_x = \\sigma(t_x) + c_x
D
dengkaipeng 已提交
210 211
         $$
         $$
D
dengkaipeng 已提交
212
         b_y = \\sigma(t_y) + c_y
D
dengkaipeng 已提交
213 214
         $$
         $$
D
dengkaipeng 已提交
215
         b_w = p_w e^{t_w}
D
dengkaipeng 已提交
216 217
         $$
         $$
D
dengkaipeng 已提交
218 219 220
         b_h = p_h e^{t_h}
         $$

D
dengkaipeng 已提交
221 222
         in the equation above, :math:`c_x, c_y` is the left top corner of current grid
         and :math:`p_w, p_h` is specified by anchors.
D
dengkaipeng 已提交
223

D
dengkaipeng 已提交
224 225
         The logistic regression value of the 5th channel of each anchor prediction boxes
         represents the confidence score of each prediction box, and the logistic
226
         regression value of the last :attr:`class_num` channels of each anchor prediction
D
dengkaipeng 已提交
227
         boxes represents the classifcation scores. Boxes with confidence scores less than
228
         :attr:`conf_thresh` should be ignored, and box final scores is the product of
D
dengkaipeng 已提交
229
         confidence scores and classification scores.
D
dengkaipeng 已提交
230

D
dengkaipeng 已提交
231 232 233 234
         $$
         score_{pred} = score_{conf} * score_{class}
         $$

235 236 237 238 239
         where the confidence scores follow the formula bellow

         .. math::

            score_{conf} = \begin{case}
240
                             obj, \text{if } iou_aware == false \\
241 242 243
                             obj^{1 - iou_aware_factor} * iou^{iou_aware_factor}, \text{otherwise}
                           \end{case}

D
dengkaipeng 已提交
244 245 246 247 248 249 250 251
         )DOC");
  }
};

}  // namespace operators
}  // namespace paddle

namespace ops = paddle::operators;
252 253
DECLARE_INFER_SHAPE_FUNCTOR(yolo_box,
                            YoloBoxInferShapeFunctor,
H
hong 已提交
254
                            PD_INFER_META(phi::YoloBoxInferMeta));
H
hong 已提交
255
REGISTER_OPERATOR(
256 257 258
    yolo_box,
    ops::YoloBoxOp,
    ops::YoloBoxOpMaker,
H
hong 已提交
259
    paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
H
hong 已提交
260 261
    paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>,
    YoloBoxInferShapeFunctor);
262

263 264
REGISTER_OP_VERSION(yolo_box).AddCheckpoint(
    R"ROC(
265 266
      Upgrade yolo box to add new attribute [iou_aware, iou_aware_factor].
    )ROC",
267 268 269
    paddle::framework::compatible::OpVersionDesc()
        .NewAttr("iou_aware", "Whether use iou aware", false)
        .NewAttr("iou_aware_factor", "iou aware factor", 0.5f));