资源简介
卡尔曼滤波的一个视频跟踪程序,简单实用,希望能帮助大家
代码片段和文件信息
% extracts the center (cccr) and radius of the largest blob
function [x2y2width_xwidth_ycccrflag]=extract(ImworkImbackindex)%fig1fig2fig3fig15index)
x2 = 0;
y2 = 0;
width_x = 0;
width_y = 0;
cc = 0;
cr = 0;
flag = 0;
[MRMCDim] = size(Imback);
% subtract background & select pixels with a big difference
fore = zeros(MRMC); %image subtracktion
fore = (abs(Imwork(::1)-Imback(::1)) > 20) ...
| (abs(Imwork(::2) - Imback(::2)) > 20) ...
| (abs(Imwork(::3) - Imback(::3)) > 20);
% Morphology Operation erode to remove small noise
%foremm = bwmorph(fore‘erode‘2); %2 time
% select largest object
labeled = bwlabel(fore4);
stats = regionprops(labeled[‘basic‘]);%basic mohem nist
[NW] = size(stats);
if N < 1
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1586 2009-06-28 21:06 kalman tracking\extract.m
文件 2597 2009-06-28 21:07 kalman tracking\kalman.m
文件 638976 2005-03-14 13:59 kalman tracking\SampleVideo.avi
..A.SH. 5632 2010-04-26 19:56 kalman tracking\Thumbs.db
目录 0 2009-06-29 09:59 kalman tracking
----------- --------- ---------- ----- ----
648791 5
相关资源
- GPS_carr_loop GPS跟踪模块的载波跟踪环的
- Kalman 用卡尔曼滤波跟踪目标实例
- demo_mtbot 多目标跟踪
- GJdongtaigzzz 改进了的动态视频目标跟踪
- GMM 本代码建立高斯混合模型(高斯多
- PF-EKF 粒子滤波和扩展卡尔曼滤波的对
- MutiTargetDetection 多目标检测与跟踪算法
-
saliency-ob
ject-or-region-detection 该文件 - pfvsmarginal 粒子滤波与PHD多目标跟踪比
- 1111 卡尔曼滤波、无迹卡尔曼滤波、扩
- 2 matlab下使用帧差法实现视频跟踪
- Tracking 实现gps卫星的跟踪功能。载波
- EKF 扩展卡尔曼滤波的基础代码
- streakline_code_v01 采用了光流法实现了目
- biandaoxianjiance 该程序包是道路边缘和
-
ob
ject-tracking-ba sed-on-TOD 基于纹理和 - _FUSION_2010 本人发表的目标跟踪方面论
-
multiple_ob
ject_tracking(3D) 多目标跟 - GM-PHDsmooth
- Adaptive_Filtering
- gps_kalman GPS接收机中的卡尔曼滤波
- IMM IMM算法
- multi-target-tracking 多目标跟踪的主程序
- PHD 用PHD滤波的方法实现多目标跟踪
- CT_code_v0 2012年的压缩感知跟踪算法
- AEKF
- matlab 运动目标跟踪技术的程序
- Wheeled_Mobile_Robot 用matlab实现轮式机器
- Fifth_degree_CKF 高阶容积卡尔曼滤波程序
- APF-path-planning-algorithm-demo 用matlab编写
评论
共有 条评论