|
IVALab Python Libraries
Collection of code for computer vision and robotics with specific API.
|
Functions | |
| def | bb_intersection_over_union (boxA, boxB) |
| def puzzle.utils.shapeProcessing.bb_intersection_over_union | ( | boxA, | |
| boxB | |||
| ) |
@brief Compute the intersection of two bounding boxes.
See https://gist.github.com/meyerjo/dd3533edc97c81258898f60d8978eddc
Args:
boxA: A list representing a bounding box.
boxB: A list representing a bounding box.
Returns:
iou: The intersection over union value.