simple-faster-rcnn-pytorch icon indicating copy to clipboard operation
simple-faster-rcnn-pytorch copied to clipboard

Why should we use two localization outputs?

Open qjadud1994 opened this issue 6 years ago • 2 comments
trafficstars

Hi, I have a question about structure of Faster R-CNN.

Why should we use two localization outputs from RPN and Classification Head?

I think only localization results from RPN is enough.

Can we proceed with class-specific classification only for positive boxes from RPN and just using that positive boxes coordinates for localization?

I'm so confused.

If anyone knows the answer, Please let me know.

qjadud1994 avatar Apr 05 '19 14:04 qjadud1994

That like boosting

hushunda avatar Apr 08 '19 11:04 hushunda

yep, if u only want to get the detected object, RPN is enough. But, in order to get the more precise results, it should combine with the detection head.

chrisway613 avatar Jul 23 '20 10:07 chrisway613