[cv] P2—Tracking-Learning-Detection(Two stage Detection)

[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第1张图片
需要提供的参数
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第2张图片
初始化
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第3张图片
Fk+1 : 状态转移矩阵 state transition matrix (nn)
Hk+1 : 度量矩阵 measurement matrix (k
n) (从状态映射到观测的矩阵)
Rk+1 : 度量噪声协方差矩阵 measurement noise covariance matirx (kk)
Qk+1: 外部影响协方差矩阵 external influence covariance matrix (n
k)
Sk : 误差估计协方差矩阵 error estimate covariance matrix (n*n)
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第4张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第5张图片

[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第6张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第7张图片

[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第8张图片

可以添加加速度 a

[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第9张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第10张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第11张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第12张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第13张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第14张图片
SVM:太复杂,RCNN被淘汰。
预训练,alexnet是分类,并不是很很擅长。
softmax去做,hard-negtive重复训练分错类。
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第15张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第16张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第17张图片
NMS (之后趋势可能会被替代)
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第18张图片
NMS现在被写成库,调用
NMS 的 Rethinking
如图,女主和男主的框,iou就很大,会把两个人检测成1个人。
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第19张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第20张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第21张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第22张图片
于是,有了fast-RCNN .

[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第23张图片

L2
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第24张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第25张图片
[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第26张图片

CornerNet


使用了center_pooling和casade_center_pooling两种方法来增强。


[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第27张图片

[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第28张图片

Center Pooling

[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第29张图片


[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第30张图片[cv] P2—Tracking-Learning-Detection(Two stage Detection)_第31张图片
在这里插入图片描述

增大类别差异。
降低靠近中心点的损失。增加差异性。

你可能感兴趣的:(opencv)