[论文解读]CVPR2019|Adaptive NMS:Refining Pedestrian Detection in a Crowd

题目:Adaptive NMS:Refining Pedestrian Detection in a Crowd
作者:Songtao Liu、Di Huang 、Yunhong Wang

Motivation:
作者认为Soft NMS 与Greedy NMS 一样,只能在一定程度上解决目标不被NMS筛掉;如果降低阈值则会导致准确率下降。因此提出Adaptive NMS。

Related works:
先定义一个object density:
d i = M a x ( i o u ( b i , b j ) ) , 其 中 b i ∈ G , i ≠ j N M = M a x ( N t , d M ) , N t 为 G r e e d y N M S 中 的 阈 值 , d M 为 密 度 值 s i = { s i i o u ( M , b i ) < N M s i ∗ f ( i o u ( M , b i ) ) i o u ( M , b i ) > N M d_i = Max( iou(b_i,b_j)), 其中b_i \in G,i \ne j\\ N_M=Max(Nt, d_M), N_t为Greedy NMS中的阈值, d_M为密度值\\ s_i =\left\{ \begin{array}{rcl} s_i& & {iou(M,b_i)N_M} \end{array} \right. di=Max(iou(bi,bj)),biG,i=jNM=Max(Nt,dM),NtGreedyNMSdMsi={sisif(iou(M,bi))iou(M,bi)<NMiou(M,bi)>NM

因此,只要求到 d M d_M dM就可以了;

object density, d M d_M dM求法:

在这里插入图片描述
对于每个bbox对应一个 d i d_i di,因此,可根据上述求法,在classes 和 bbox 外加一层预测 density的方法;

Experiment:
[论文解读]CVPR2019|Adaptive NMS:Refining Pedestrian Detection in a Crowd_第1张图片
相比NMS,SOFT NMS,Adaptive NMS的效果是相对最好的;

你可能感兴趣的:(DPL)