generate_proposal_labels¶
- paddle.fluid.layers.detection. generate_proposal_labels ( rpn_rois, gt_classes, is_crowd, gt_boxes, im_info, batch_size_per_im=256, fg_fraction=0.25, fg_thresh=0.25, bg_thresh_hi=0.5, bg_thresh_lo=0.0, bbox_reg_weights=[0.1, 0.1, 0.2, 0.2], class_nums=None, use_random=True, is_cls_agnostic=False, is_cascade_rcnn=False, max_overlap=None, return_max_overlap=False ) [source]
-
Generate Proposal Labels of Faster-RCNN
This operator can be, for given the GenerateProposalOp output bounding boxes and groundtruth, to sample foreground boxes and background boxes, and compute loss target.
RpnRois is the output boxes of RPN and was processed by generate_proposal_op, these boxes were combined with groundtruth boxes and sampled according to batch_size_per_im and fg_fraction, If an instance with a groundtruth overlap greater than fg_thresh, then it was considered as a foreground sample. If an instance with a groundtruth overlap greater than bg_thresh_lo and lower than bg_thresh_hi, then it was considered as a background sample. After all foreground and background boxes are chosen (so called Rois), then we apply random sampling to make sure the number of foreground boxes is no more than batch_size_per_im * fg_fraction.
For each box in Rois, we assign the classification (class label) and regression targets (box label) to it. Finally BboxInsideWeights and BboxOutsideWeights are used to specify whether it would contribute to training loss.
- Parameters
-
rpn_rois (Variable) – A 2-D LoDTensor with shape [N, 4]. N is the number of the GenerateProposalOp’s output, each element is a bounding box with [xmin, ymin, xmax, ymax] format. The data type can be float32 or float64.
gt_classes (Variable) – A 2-D LoDTensor with shape [M, 1]. M is the number of groundtruth, each element is a class label of groundtruth. The data type must be int32.
is_crowd (Variable) – A 2-D LoDTensor with shape [M, 1]. M is the number of groundtruth, each element is a flag indicates whether a groundtruth is crowd. The data type must be int32.
gt_boxes (Variable) – A 2-D LoDTensor with shape [M, 4]. M is the number of groundtruth, each element is a bounding box with [xmin, ymin, xmax, ymax] format.
im_info (Variable) – A 2-D LoDTensor with shape [B, 3]. B is the number of input images, each element consists of im_height, im_width, im_scale.
batch_size_per_im (int) – Batch size of rois per images. The data type must be int32.
fg_fraction (float) – Foreground fraction in total batch_size_per_im. The data type must be float32.
fg_thresh (float) – Overlap threshold which is used to chose foreground sample. The data type must be float32.
bg_thresh_hi (float) – Overlap threshold upper bound which is used to chose background sample. The data type must be float32.
bg_thresh_lo (float) – Overlap threshold lower bound which is used to chose background sample. The data type must be float32.
bbox_reg_weights (list|tuple) – Box regression weights. The data type must be float32.
class_nums (int) – Class number. The data type must be int32.
use_random (bool) – Use random sampling to choose foreground and background boxes.
is_cls_agnostic (bool) – bbox regression use class agnostic simply which only represent fg and bg boxes.
is_cascade_rcnn (bool) – it will filter some bbox crossing the image’s boundary when setting True.
max_overlap (Variable) – Maximum overlap between each proposal box and ground-truth.
return_max_overlap (bool) – Whether return the maximum overlap between each sampled RoI and ground-truth.
- Returns
-
A tuple with format``(rois, labels_int32, bbox_targets, bbox_inside_weights, bbox_outside_weights, max_overlap)``.
rois: 2-D LoDTensor with shape
[batch_size_per_im * batch_size, 4]
. The data type is the same asrpn_rois
.labels_int32: 2-D LoDTensor with shape
[batch_size_per_im * batch_size, 1]
. The data type must be int32.bbox_targets: 2-D LoDTensor with shape
[batch_size_per_im * batch_size, 4 * class_num]
. The regression targets of all RoIs. The data type is the same asrpn_rois
.bbox_inside_weights: 2-D LoDTensor with shape
[batch_size_per_im * batch_size, 4 * class_num]
. The weights of foreground boxes’ regression loss. The data type is the same asrpn_rois
.bbox_outside_weights: 2-D LoDTensor with shape
[batch_size_per_im * batch_size, 4 * class_num]
. The weights of regression loss. The data type is the same asrpn_rois
.max_overlap: 1-D LoDTensor with shape
[P]
. P is the number of outputrois
. The maximum overlap between each sampled RoI and ground-truth.
- Return type
-
tuple
Examples
import paddle import paddle.fluid as fluid paddle.enable_static() rpn_rois = fluid.data(name='rpn_rois', shape=[None, 4], dtype='float32') gt_classes = fluid.data(name='gt_classes', shape=[None, 1], dtype='int32') is_crowd = fluid.data(name='is_crowd', shape=[None, 1], dtype='int32') gt_boxes = fluid.data(name='gt_boxes', shape=[None, 4], dtype='float32') im_info = fluid.data(name='im_info', shape=[None, 3], dtype='float32') rois, labels, bbox, inside_weights, outside_weights = fluid.layers.generate_proposal_labels( rpn_rois, gt_classes, is_crowd, gt_boxes, im_info, class_nums=10)