Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Confusion about the nms implementation #190

Open
chinmay5 opened this issue Jun 26, 2020 · 1 comment
Open

Confusion about the nms implementation #190

chinmay5 opened this issue Jun 26, 2020 · 1 comment

Comments

@chinmay5
Copy link

I have some doubts regarding the nms implementation. Specifically, the part inds + 1 being used here:-

order = order[inds + 1]

The remaining code is quite clear but I am not able to wrap my brain around this particular line

@GitHub-Crow
Copy link

you can see xx1 = np.maximum(x1[i], x1[order[1:]]) , x1[order[1:]] is start from 0, so all the indices in xx1 wiil decrease 1. and order is complete (include i).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants