↓ 2 callersFunction_bbox_overlapsComputes IoU overlaps between two sets of boxes. boxes1, boxes2: [N, (y1, x1, y2, x2)].
mrcnn/models/components/detection_target.py:141
↓ 1 callersFunctioncompute_iouCalculates IoU of the given box with the array of the given boxes. box: 1D vector [y1, x1, y2, x2] boxes: [boxes_count, (y1, x1, y2, x2)]
mrcnn/utils/utils.py:105
↓ 1 callersFunctioncompute_mrcnn_bbox_lossLoss for Mask R-CNN bounding box refinement. target_bbox: [batch, num_rois, (dy, dx, log(dh), log(dw))] target_class_ids: [batch, num_rois].
mrcnn/functions/losses.py:129
↓ 1 callersFunctioncompute_rpn_bbox_lossReturn the RPN bounding box loss graph. target_bbox: [batch, max positive anchors, (dy, dx, log(dh), log(dw))]. Uses 0 padding to fill in
mrcnn/functions/losses.py:79
↓ 1 callersFunctiondetection_target_layerSubsamples proposals and generates target box refinement, class_ids, and masks for each. Inputs: proposals: [batch, N, (y1, x1, y2, x2)]
mrcnn/models/components/detection_target.py:20
↓ 1 callersFunctiondisplay_instances boxes: [num_instance, (y1, x1, y2, x2, class_id)] in image coordinates. masks: [height, width, num_instances] class_ids: [num_instances]
mrcnn/utils/visualize.py:84