CapricornZhang

Results 2 issues of CapricornZhang

I saw the pytorch implement dir in your repo, can you show us how to use it in pytorch? Thank you for your sharing!

the code is as follows: for bbox in bboxes: bbox = np.array(bbox) * ratio x1, y1, w, h = int(bbox[0]), int(bbox[1]), int(bbox[2]), int(bbox[3]) x1 = np.maximum(x1, 0) y1 = np.maximum(y1,...