kbaxx

Results 1 comments of kbaxx

i fixed it with the following code: from scipy.optimize import linear_sum_assignment ... matched_indices = linear_sum_assignment(-iou_matrix) matched_indices = np.array(list(zip(*matched_indices)))