SSD.Pytorch icon indicating copy to clipboard operation
SSD.Pytorch copied to clipboard

detections[0, i, j, 1:] gives number above 1

Open alontrais opened this issue 4 years ago • 0 comments

I used the test script for testing the net. before I multiply the coordinates by scale

pt = (detections[0, i, j, 1:]).cpu().numpy() coords = (pt[0], pt[1], pt[2], pt[3])

I get numbers above 1 for example: (0.2503756, 1.0008582, 0.2537056, 1.0039957)

What could be the cause of this problem?

alontrais avatar Jun 28 '20 08:06 alontrais