We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from nms2.nms import py_nms_wrapper, cpu_nms_wrapper, gpu_nms_wrapper boxes2 = np.array([ [0, 100, 0, 0, 100, 0, 100, 100, 0.99], [10, 110, 10, 10, 130, 10, 150, 110, 0.88],#keep 0.68 [150, 250, 150, 150, 250, 150, 250, 250, 0.77], # keep 0.0 [20, 50, 50, 20, 120, 50, 50, 120, 0.66],#discard 0.70 ], dtype=np.float32) nms = gpu_nms_wrapper(0.6, 0) keep = nms(boxes2) print(keep)
This is a simple test code about the gpunms. The output of this code is [2, 1, 3, 0]. Does this result correct?
gpunms
[2, 1, 3, 0]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is a simple test code about the
gpunms
. The output of this code is[2, 1, 3, 0]
.Does this result correct?
The text was updated successfully, but these errors were encountered: