Particle filter for visual tracking
Kalman Filter
Cons:
Kalman filtering is inadequate because it is based on the unimodal Gaussian distribution assumption, and it can’t represent simultaneous alternative hypotheses.
It works relatively poorly in clutter which causes the density to be multi-modal and therefore non- Gaussian.
Kalman filter is based on the single Gauss model, and different components have different effects on the Gauss distribution, as follows:
- The deterministic component causes the density function to drift bodily.
- The random component of the dynamical model leads to spreading—increasing uncertainty.
- The effect of an external observation is to superimpose a reactive effect on the diffusion.

Particle Filter
The CONDENSATION Algorithm

At the top of the diagram, the output from time-step t -1 is the weighted sample-set. The aim is to maintain, at successive time-steps, sample sets of fixed size N.
The first operation is to sample N times from the set , choosing a given element with probability. Some elements, especially those with high weights, may be chosen several times, leading to identical copies of elements in the new set. Others with relatively low weights may not be chosen at all.
- Each element chosen from the new set is now subjected to the predictive steps.First, an element undergoes drift and, since this is deterministic, identical elements in the new set undergo the same drift.
- The second predictive step, diffusion, is random and identical elements now split because each undergoes its own independent motion step. At this stage, the sample set for the new time-step has been generated but, as yet, without its weights;
Finally, the observation step is applied, generating weights from the observation density.
Algorithm:


Color-based Particle Filter
Color histograms have many advantages for tracking non-rigid objects as they are robust to partial occlusion, are rotation and scale invariant and are calculated efficiently.
A target is tracked with a particle filter by comparing its histogram with the histograms of the sample positions using the Bhattacharyya distance.
Bhattacharyya distance:在统计学中,Bhattacharyya距离(以下称巴氏距离)测量的是两个离散或连续概率分布的相似性。计算方式和Bhattacharyya系数关系很密切。
Algorithm:

Kernel-based Particle Filter
A PF does not perform well when the dynamic system has a very small system noise or if the observation noise has very small variance. In these cases, the particle set quickly collapses to one single point in the state space.
The standard PF often fails to produce a particle set that captures the “irregular” motion, leading to gradually drifting estimates and ultimate loss of target.
to be done
A Boosted Particle Filter
The problem of tracking a varying number of non- rigid objects has two major difficulties:
- First, the observation models and target distributions can be highly non-linear and non- Gaussian.
- Second, the presence of a large, varying number of objects creates complex interactions with overlap and ambiguities.
Mixture particle filters and Adaboost:
An effective way is to combine mixture particle filters and Adaboost. The crucial issues in mixture particle filters are the choice of the proposal distribution and the treatment of objects leaving and entering the scene.
The mixture particle filter is ideally suited to multi-target tracking as it assigns a mixture component to each player. The proposal distribution can be constructed by using a mixture model that incorporates information from the dynamic models of each player and the detection hypotheses generated by Adaboost.
Methods:
- Most multi-target tracking assumed a fixed number of objects.
- BraMBLe has an automatic object detection system that relies on modeling a fixed background.
- The authors will relax the assumption of a fixed background where the background changes.
- Particle filters may perform poorly when the posterior is multimodal for multiple targets. Vermaak et al introduce a mixture particle filter (MPF), where each component is modelled with an individual particle filter. BPF is based on MPF.
- The authors adopt a multi-color observation model based on Hue-Saturation-Value (HSV) color histograms.
The boosted particle filter introduces two important extensions of the MPF:
- First, it uses Adaboost to construct the proposal distribution. It incorporates the recent observations in proposal distributions (through the Adaboost detections), and outperforms naive transition prior proposals considerably.
- Second, Adaboost provides a mechanism for obtaining and maintaining the mixture representation. It allows us to detect objects leaving and entering the scene efficiently.
References
- M. Isard and A. Blake. Condensation–conditional density propagation for visual tracking. Int. J. Computer Vision, 29(1):5– 28, 1998.
- S. Arulampalam, S. Maskell, N. Gordon, and T. Clapp, “A tutorial on particle filters for on-line non-linear/non-Gaussian Bayesian tracking,” IEEE Transactions on Signal Processing, vol. 50, pp. 174–188, Feb. 2002.
- K. Nummiaroa, E. Koller-Meierb, L. V. Gool, “An adaptive color- based particle filter”, Image and Vision Computing 21 (2003) 99– 110.
- C.Chang, and R. Ansari, “Kernel Particle Filter for Visual Tracking”, IEEE SIGNAL PROCESSING LETTERS, VOL. 12, NO. 3, pp242-245, 2005.
- K. Okuma, et al., “A Boosted Particle Filter: Multitarget Detection and Tracking”, ECCV 2004 (2004), pp. 28-39.
Particle filter for visual tracking的更多相关文章
- Correlation Filter in Visual Tracking系列二:Fast Visual Tracking via Dense Spatio-Temporal Context Learning 论文笔记
原文再续,书接一上回.话说上一次我们讲到了Correlation Filter类 tracker的老祖宗MOSSE,那么接下来就让我们看看如何对其进一步地优化改良.这次要谈的论文是我们国内Zhang ...
- Correlation Filter in Visual Tracking系列一:Visual Object Tracking using Adaptive Correlation Filters 论文笔记
Visual Object Tracking using Adaptive Correlation Filters 一文发表于2010的CVPR上,是笔者所知的第一篇将correlation filt ...
- Correlation Filter in Visual Tracking
涉及两篇论文:Visual Object Tracking using Adaptive Correlation Filters 和Fast Visual Tracking via Dense Spa ...
- Summary on Visual Tracking: Paper List, Benchmarks and Top Groups
Summary on Visual Tracking: Paper List, Benchmarks and Top Groups 2018-07-26 10:32:15 This blog is c ...
- 基于粒子滤波的物体跟踪 Particle Filter Object Tracking
Video来源地址 一直都觉得粒子滤波是个挺牛的东西,每次试图看文献都被复杂的数学符号搞得看不下去.一个偶然的机会发现了Rob Hess(http://web.engr.oregonstate.edu ...
- 论文笔记:Attentional Correlation Filter Network for Adaptive Visual Tracking
Attentional Correlation Filter Network for Adaptive Visual Tracking CVPR2017 摘要:本文提出一种新的带有注意机制的跟踪框架, ...
- Resources in Visual Tracking
这个应该是目前最全的Tracking相关的文章了 一.Surveyand benchmark: 1. PAMI2014:VisualTracking_ An Experimental Sur ...
- (转)CVPR 2016 Visual Tracking Paper Review
CVPR 2016 Visual Tracking Paper Review 本文摘自:http://blog.csdn.net/ben_ben_niao/article/details/52072 ...
- 论文笔记之: Hierarchical Convolutional Features for Visual Tracking
Hierarchical Convolutional Features for Visual Tracking ICCV 2015 摘要:跟卢湖川的那个文章一样,本文也是利用深度学习各个 layer ...
随机推荐
- python框架面试题联系
1.对 MVC,MVT 解读的理解? M:Model,模型,和数据库进行交互 V:View,视图,负责产生 Html 页面 C:Controller,控制器,接收请求,进行处理,与 M 和 V 进行交 ...
- 手机上的m3u8视频(缓存)怎么转成MP4?
一.下载M3u8合并APK,自定义扫描手机中的m3u8文件目录.选择导出的目录,可以多个同时进行m3u8的合并任务. 合并后的文件可以完整播放,但是视频时间只有前十来秒,进度无法拖动. 二.将合并好的 ...
- 关于HashMap自定义key重写hashCode和equals的问题
使用HashMap,如果key是自定义的类,就必须重写hashcode()和equals() hashcode()和equals()都继承于object,在Object类中的定义为: equals( ...
- 【Nginx】什么是Nginx?为什么使用Nginx?
转文章 一.前言 为毛要用nginx服务器代理,不直接用tomcat 7.0,还做多了一次接请求? 这个是我想问的,公司的新项目是要用Nginx+tomcat7+jdk开发的,用户命名可以直接访问to ...
- idea报错:[2016-08-31 09:20:10,763] Artifact xxx:war exploded: Error during artifact deployment.
[2016-08-31 09:20:10,763] Artifact newClassProject1:war exploded: Error during artifact deployment. ...
- [CQOI2016]K远点对
嘟嘟嘟 做过[国家集训队]JZPFAR这道题的话,这题就不难了. 我们维护一个长度为\(k\)的小根堆,在加入第\(i\)个点之前,用\([1, i - 1]\)这些点离点\(i\)的距离更新答案.这 ...
- DNS攻击
DNS攻击 实验是基于Linux系统,配置了bind9服务的机器 大纲 本地修改Host文件重定向路径到指定地址 对User的DNS查询进行欺骗攻击 在同一局域网下,对DNS服务器的DNS查询进行欺骗 ...
- 以太坊中的Ghost协议
https://blog.csdn.net/t46414704152abc/article/details/81191804 写得超好,终于弄懂了什么是叔块,怎么确定哪条链最长,以太坊与比特币出块的差 ...
- Python Tornado集成JSON Web Token方式登录
本项目github地址 前端测试模板如下: Tornado restful api 项目 项目结构如下: 项目组织类似于django,由独立的app模块构成. 登录接口设计 模式:post -> ...
- win10升级至专业版
前几天脑子一热,买了个电脑,默认系统还是那简单的win10家庭版.作为一个IT从业者,家庭版是很难受的,因为没有组策略....会导致在装一些软件的时候无法修改.所以来动手吧,方式有几种,这里都大概说说 ...