note
-
Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networksnote 2017. 5. 22. 23:48
Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks Shaoqing Ren, Kaiming He, Ross Girshick, Jian Sun - arXiv : https://arxiv.org/abs/1506.01497- code : https://github.com/rbgirshick/py-faster-rcnn [ Param Check ] ■ anchor ratios- related code : rpn/generate_anchors.py- ratios = width : height example. if ratios = [0.5, 1, 2, 4], then anchor widths = [ 23, 16, 11, 8] a..