ijkguo / mx-rcnn

Parallel Faster R-CNN implementation with MXNet.
Other
669 stars 292 forks source link

about convert to per class detection results? #118

Closed KiXiang closed 5 years ago

KiXiang commented 5 years ago

in function im_detect ,convert to per class detection results for j in range(1,scores.shape[-1]), if class num is 20,j is1to19? @ijkguo

ijkguo commented 5 years ago

scores will have shape (...,21) after adding background class.

KiXiang commented 5 years ago

thanks,i get it