YuwenXiong / py-R-FCN

R-FCN with joint training and python support
MIT License
1.05k stars 471 forks source link

Usage of __C.TEST.NMS #60

Closed dantp-ai closed 7 years ago

dantp-ai commented 7 years ago

The comments in config.py regarding __C.TEST.NMS seem to contain a typo, namely it states

# Overlap threshold used for non-maximum suppression (suppress boxes with
# IoU >= this threshold)
__C.TEST.NMS = 0.3

But it should state:

# Overlap threshold used for non-maximum suppression (suppress boxes with
# IoU #<=# this threshold)

Can you confirm this ?

liyi14 commented 7 years ago

NMS is designed to suppress boxes which heavily overlap with another box which has a higher score.