You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whitout your demo code, I try draw detect result on pic.
In test.py, line 64:
........
out = net(x)
boxes, scores = detector.forward(out,priors)
detect_time = _t['im_detect'].toc()
boxes = boxes[0]
scores=scores[0]
boxes *= scale
boxes = boxes.cpu().numpy()
scores = scores.cpu().numpy()
......
after these codes, I think with boxes /scores I can draw box of object detect result on input pic(x was get from this pic) ,whit nms , I will get the right results. Is it right?
The text was updated successfully, but these errors were encountered:
Whitout your demo code, I try draw detect result on pic.
In test.py, line 64:
........
out = net(x)
boxes, scores = detector.forward(out,priors)
detect_time = _t['im_detect'].toc()
boxes = boxes[0]
scores=scores[0]
boxes *= scale
boxes = boxes.cpu().numpy()
scores = scores.cpu().numpy()
......
after these codes, I think with boxes /scores I can draw box of object detect result on input pic(x was get from this pic) ,whit nms , I will get the right results. Is it right?
The text was updated successfully, but these errors were encountered: