error in iou__batches
yy1 = np.maximum(bb_test[..., 1], bb_gt[..., 1]) IndexError: index 1 is out of bounds for axis 1 with size 1
xx1 = np.maximum(bb_test[..., 0], bb_gt[..., 0]) ValueError: operands could not be broadcast together with shapes (0,) (1,2)
getting these two error while running
I am also getting similar issue
were you able to resolve it?
' xx1 = np.maximum(bb_test[..., 0], bb_gt[..., 0])', 'ValueError: operands could not be broadcast together with shapes (0,) (1,32)
@marunava21 @day-night-py check the detections you're passing to tracker, even if there are no detections just pass "np.empty((0, 5))".
@sauravns Thanks for the suggestion, i solved the issue