defeval_market1501(distmat, q_pids, g_pids, q_camids, g_camids, max_rank): """Evaluation with market1501 metric Key: for each query identity, its gallery images from the same camera view are discarded. """ num_q, num_g = distmat.shape if num_g < max_rank: max_rank = num_g print("Note: number of gallery samples is quite small, got {}".format(num_g)) indices = np.argsort(distmat, axis=1) matches = (g_pids[indices] == q_pids[:, np.newaxis]).astype(np.int32)
all_cmc = [] all_AP = [] num_valid_q = 0.# number of valid query for q_idx in range(num_q): # get query pid and camid q_pid = q_pids[q_idx] q_camid = q_camids[q_idx]
# remove gallery samples that have the same pid and camid with query order = indices[q_idx] remove = (g_pids[order] == q_pid) & (g_camids[order] == q_camid) keep = np.invert(remove)
# compute cmc curve orig_cmc = matches[q_idx][keep] # binary vector, positions with value 1 are correct matches ifnot np.any(orig_cmc): # this condition is true when query identity does not appear in gallery continue
cmc = orig_cmc.cumsum() cmc[cmc > 1] = 1
all_cmc.append(cmc[:max_rank]) num_valid_q += 1.
good_idx = [] keep_ap = (g_pids[order] == q_pid) & (g_camids[order] != q_camid) for i in range(keep_ap.shape[0]): if keep_ap[i]: good_idx.append(order[i])