You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently I reinstalled caffe and py-faster-rcnn, everythong works well except that I get a lot of overlapped detection bounding boxes in my result. Then I find it is because the gpu_nms always outputs all the detection results without doing anything, while cpu_nms works well.
Then I tried to track the problem and I found in 'nms_kernel.cu', the function 'nms_kernel' is skipped.
_ global _ void nms_kernel(const int n_boxes, const float nms_overlap_thresh,
const float *dev_boxes, unsigned long long *dev_mask)
Since I do not know much about cuda programming, I can not go further.
Can someone help me with this problem? Thanks in advance.
The text was updated successfully, but these errors were encountered:
Recently I reinstalled caffe and py-faster-rcnn, everythong works well except that I get a lot of overlapped detection bounding boxes in my result. Then I find it is because the gpu_nms always outputs all the detection results without doing anything, while cpu_nms works well.
Then I tried to track the problem and I found in 'nms_kernel.cu', the function 'nms_kernel' is skipped.
_ global _ void nms_kernel(const int n_boxes, const float nms_overlap_thresh,
const float *dev_boxes, unsigned long long *dev_mask)
Since I do not know much about cuda programming, I can not go further.
Can someone help me with this problem? Thanks in advance.
The text was updated successfully, but these errors were encountered: