Why is score greater than 1 when using lanms?
LW-CVer opened this issue · 0 comments
LW-CVer commented
when adding the following code,the score is less than 0.5
for i, box in enumerate(boxes):
mask = np.zeros_like(score_map, dtype=np.uint8)
cv2.fillPoly(mask, box[:8].reshape((-1, 4, 2)).astype(np.int32) // 4, 1)
boxes[i, 8] = cv2.mean(score_map, mask)[0]
boxes = boxes[boxes[:, 8] > box_thresh]