TuSimple / mx-maskrcnn

An MXNet implementation of Mask R-CNN

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to select the area threshold which is used to assign level of proposal from RPN?

hdjsjyl opened this issue · comments

In the code, I see this part:
area_threshold = [[np.inf, 448],
[448, 224],
[224, 112],
[112, 0]]

this area threshold is constant or is decided by size of picture or some other things?