-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
nms() in do_detect() in utils.py should perform per class per image, no? #29
Comments
ordinally NMS perform as class agnostic because of overlapped boxes. |
in author'nms, too many 'for' caused the speed too slow |
Thank you very much for your suggestions. I will optimize the NMS in the future, and you are welcome to join us. |
it needs performs for each class, but this can be optimized by adding offset, For details, please refer to the nms implementation in torchvision |
@GlassyWing Could you point out the code? |
The code could be see at The comments have explained the process in more detail |
I thought we should perform nms per class per image, no?
def nms(boxes, nms_thresh): in tool/utils.py
The text was updated successfully, but these errors were encountered: