Skip to content

Commit

Permalink
Update Faster-RCNN.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Hanson0910 authored Dec 23, 2021
1 parent 7e06fdd commit 323ff48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 目标检测篇/Anchor-Base/two-stage/Faster-RCNN.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ Faster-RCNN分为RPN和RCNN两个部分,两个部分单独优化,RCNN部分
### 7. 总结

Faster-RCNN的作者从RCNN,Fast-RCNN一步一个脚印,做的工作非常扎实,RPN的提出使得网络能够完全以end-to-end的方式进行训练,anchor的提出为后来anchor-base系列的目标检测奠定了基础。现在各种主干网络,loss,FPN等提出使得Faster-RCNN在原来基础上又能够有一个很大的进步。但是Faster RCNN还是存在一些问题,比如:
- ROI后部分的网络参数不共享,每一个ROI都要进行一次运算,会增加运行时间,同时因为ROI的前部分都是共享参数的所以具有位置不敏感性,而后部分每一个ROI都独自运行一次所以具有位置不敏感性,其检测精度会较低。
- ROI后部分的网络参数不共享,每一个ROI都要进行一次运算,会增加运行时间,同时因为ROI的前部分都是共享参数的所以具有位置不敏感性,而后部分只有全连接层所以具有位置不敏感性,其检测精度会较低。

0 comments on commit 323ff48

Please sign in to comment.