modify the event pickle file

This commit is contained in:
18262620154
2024-07-28 19:21:27 +08:00
parent f14faa323e
commit 0ccfd0151f
152 changed files with 57 additions and 27 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -132,11 +132,11 @@ class backTrack(Track):
num_outcart = cv2.countNonZero(isoutcart)
num_cartboarder = cv2.countNonZero(iscartboarder)
incart_iou = num_incart/num_temp
outcart_iou = num_outcart/num_temp
cartboarder_iou = num_cartboarder/num_temp
maxbox_iou = maxarea/num_temp
minbox_iou = minarea/num_temp
incart_iou = num_incart/(num_temp+1e-6)
outcart_iou = num_outcart/(num_temp+1e-6)
cartboarder_iou = num_cartboarder/(num_temp+1e-6)
maxbox_iou = maxarea/(num_temp+1e-6)
minbox_iou = minarea/(num_temp+1e-6)
self.feature_ious = (incart_iou, outcart_iou, cartboarder_iou, maxbox_iou, minbox_iou)
self.incartrates = incartrates

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.