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

Why not use rotate_nms_gpu? #26

Closed
godspeed1989 opened this issue Oct 31, 2018 · 2 comments
Closed

Why not use rotate_nms_gpu? #26

godspeed1989 opened this issue Oct 31, 2018 · 2 comments

Comments

@godspeed1989
Copy link

Hi,
I notice function rotate_nms() in box_torch_ops.py
You use rotate_nms_cc instead of rotate_nms_gpu

ret = np.array(rotate_nms_cc(dets_np, iou_threshold), dtype=np.int64)

My question is why not use faster GPU version NMS?

Thanks in advance.

@traveller59
Copy link
Owner

  1. after filter boxes by score threshold, lots of boxes are filtered and can't get significant speed increase with gpu rnms.
  2. the gpu version is a little unstable.

@godspeed1989
Copy link
Author

Thanks a lot

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