- 回归窗口
the bounding box regression of Faster R-CNN
- 线性回归建模

线性回归就是给定输入的特征向量X, 学习一组参数W, 使得经过线性回归后的值跟真实值Y非常接近,即Y’=WX

如何经过变换使得原始的Proposal转换为预测GT?思路如下:
the bounding box regression of Faster R-CNN
the bounding box regression of Faster R-CNN

note:只有当Proposal和Ground Truth比较接近时(线性问题),我们才能将其作为训练样本训练我们的线性回归模型,
否则会导致训练的回归模型不work(当Proposal跟GT离得较远,就是复杂的非线性问题了,此时用线性回归建模显然不合理).

- 回归网络

  • the input and output of bouding box regression are following:
    the bounding box regression of Faster R-CNN
    the bounding box regression of Faster R-CNN
  • the loss function of bounding box regression network:
    the bounding box regression of Faster R-CNN
    where λ is balancing parameter
    the bounding box regression of Faster R-CNN
    the bounding box regression of Faster R-CNN
    the bounding box regression of Faster R-CNN
    参考文献:
    Faster RCNN详解
    一文读懂Faster RCNN

相关文章:

  • 2021-10-31
  • 2021-07-26
  • 2021-10-03
  • 2021-05-15
  • 2021-12-04
  • 2021-11-25
  • 2021-07-28
  • 2019-03-25
猜你喜欢
  • 2021-08-02
  • 2021-11-17
  • 2021-09-08
  • 2021-08-28
  • 2022-01-01
相关资源
相似解决方案