【目标追踪】基于核相关滤波器实现目标跟踪含matlab源码

简介: 【目标追踪】基于核相关滤波器实现目标跟踪含matlab源码

1 简介

目标跟踪技术在智能交通、安全监控、人机交互和运动分析等领域有着广泛的应用。近些年,目标跟踪技术取得了飞速的发展,涌现出许多优秀的目标跟踪算法,解决了很多棘手的目标跟踪问题。但是,目标跟踪技术仍然面临着很多的挑战,由于现实环境较为复杂,目前的跟踪算法在实时性、精确性等方面还不能满足实际应用。本文对KCF目标跟踪算法进行优化,KCF跟踪算法利用循环矩阵进行密集采样提取图像的HOG特征,使用正则化最小二乘分类器进行训练提高了运行速度。KCF跟踪算法的优势为目标跟踪速度快,在Benmark视频序列集OTB50的平均速度为172fps,平均精度为73.2%。

2 部分代码

function [img_files, pos, target_sz, ground_truth, video_path] = load_video_info(base_path, video)%LOAD_VIDEO_INFO%   Loads all the relevant information for the video in the given path:%   the list of image files (cell array of strings), initial position%   (1x2), target size (1x2), the ground truth information for precision%   calculations (Nx2, for N frames), and the path where the images are%   located. The ordering of coordinates and sizes is always [y, x].%在给定路径中加载视频的所有相关信息:图像文件列表(字符串单元数组)、初始位置(1x2)、%目标大小(1x2)、用于精确计算的ground truth信息(N帧的Nx2)以及图像所在的路径。%坐标和大小的顺序总是[y, x]。%%   Joao F. Henriques, 2014%   http://www.isr.uc.pt/~henriques/  %see if there's a suffix, specifying one of multiple targets, for  %example the dot and number in 'Jogging.1' or 'Jogging.2'.  %{    if numel(video) >= 2 && video(end-1) == '.' && ~isnan(str2double(video(end))),    suffix = video(end-1:end);  %remember the suffix    video = video(1:end-2);  %remove it from the video name  else    suffix = '';  end  %full path to the video's files  if base_path(end) ~= '/' && base_path(end) ~= '\',    base_path(end+1) = '/';  end    %}  %video_path = [base_path video '/'];    %video_path = [base_path video];%     video_path = choose_video(base_path);%大概因为这句,所以我需要选择两次视频    video_path = video;        %try to load ground truth from text file (Benchmark'sformat)    %尝试从文本文件(基准测试的格式)加载ground truth  %{    filename = [video_path 'Basketball_gt' suffix '.txt'];  f = fopen(filename);  assert(f ~= -1, ['No initial position or ground truth to load ("' filename '").'])    %the format is [x, y, width, height]  try    ground_truth = textscan(f, '%f,%f,%f,%f', 'ReturnOnError',false);    catch  %#ok, try different format (no commas)    frewind(f);    ground_truth = textscan(f, '%f %f %f %f');    end    %}        text_files = dir([video_path '*_gt.txt']);  assert(~isempty(text_files), 'No initial position and ground truth (*_gt.txt) to load.')  f = fopen([video_path text_files(1).name]);  ground_truth = textscan(f, '%f,%f,%f,%f');%已经将car4数据进行修改      ground_truth = cat(2, ground_truth{:});  fclose(f);    %set initial position and size      target_sz = [ground_truth(1,4), ground_truth(1,3)];  pos = [ground_truth(1,2), ground_truth(1,1)] + floor(target_sz/2);         if size(ground_truth,1) == 1,    %we have ground truth for the first frame only (initial position)    ground_truth = [];  else    %store positions instead of boxes    ground_truth = ground_truth(:,[2,1]) + ground_truth(:,[4,3]) / 2;  end      %from now on, work in the subfolder where all the images are  video_path = [video_path 'imgs/'];    %f or these sequences, we must limit ourselves to a range of frames.  %for all others, we just load all png/jpg files in the folder.   frames = {'David', 300, 770;        'Football1', 1, 74;        'Freeman3', 1, 460;              'Freeman4', 1, 283};    idx = find(strcmpi(video, frames(:,1)));    if isempty(idx),    %general case, just list all images    img_files = dir([video_path '*.png']);    if isempty(img_files),      img_files = dir([video_path '*.jpg']);      assert(~isempty(img_files), 'No image files to load.')    end    img_files = sort({img_files.name});  else    %list specified frames. try png first, then jpg.    if exist(sprintf('%s%04i.png', video_path, frames{idx,2}), 'file'),      img_files = num2str((frames{idx,2} : frames{idx,3})', '%04i.png');          elseif exist(sprintf('%s%04i.jpg', video_path, frames{idx,2}), 'file'),      img_files = num2str((frames{idx,2} : frames{idx,3})', '%04i.jpg');          else      error('No image files to load.')    end        img_files = cellstr(img_files);  end  end

3 仿真结果

4 参考文献

[1] J. F. Henriques, R. Caseiro, P. Martins, J. Batista, "High-Speed Tracking with

Kernelized Correlation Filters", TPAMI 2014 (to be published).


[2] J. F. Henriques, R. Caseiro, P. Martins, J. Batista, "Exploiting the Circulant

Structure of Tracking-by-detection with Kernels", ECCV 2012.


[3] Y. Wu, J. Lim, M.-H. Yang, "Online Object Tracking: A Benchmark", CVPR 2013.

Website: http://visual-tracking.net/


[4] P. Dollar, "Piotr's Image and Video Matlab Toolbox (PMT)".

Website: http://vision.ucsd.edu/~pdollar/toolbox/doc/index.html


[5] P. Dollar, S. Belongie, P. Perona, "The Fastest Pedestrian Detector in the

West", BMVC 2010.

博主简介:擅长智能优化算法、神经网络预测、信号处理、元胞自动机、图像处理、路径规划、无人机等多种领域的Matlab仿真,相关matlab代码问题可私信交流。

部分理论引用网络文献,若有侵权联系博主删除。

相关文章
|
2月前
|
存储 算法 数据可视化
基于 MATLAB的GUI信号处理界面设计 源码+运行截图
基于 MATLAB的GUI信号处理界面设计 源码+运行截图
83 2
基于粒子滤波器的电池剩余使用寿命计算matlab仿真
本研究基于粒子滤波器预测电池剩余使用寿命(RUL),采用MATLAB2022a实现。通过非线性动力学模型模拟电池老化过程,利用粒子滤波器处理非线性和非高斯问题,准确估计电池SOH变化趋势,进而预测RUL。系统仿真结果显示了良好的预测性能。
|
4月前
|
存储 算法 Serverless
【matlab】matlab基于DTW和HMM方法数字语音识别系统(源码+音频文件+GUI界面)【独一无二】
【matlab】matlab基于DTW和HMM方法数字语音识别系统(源码+音频文件+GUI界面)【独一无二】
|
4月前
|
存储 Serverless
【matlab】matlab实现倒谱法基音频率检测和共振峰检测(源码+音频文件)【独一无二】
【matlab】matlab实现倒谱法基音频率检测和共振峰检测(源码+音频文件)【独一无二】
|
4月前
|
算法 数据安全/隐私保护 计算机视觉
基于粒子滤波和帧差法的目标跟踪matlab仿真
本项目展示一种结合粒子滤波与帧差法的目标跟踪技术,在Matlab 2013b上实现。通过帧间差异检测运动目标,并利用粒子滤波优化跟踪精度。改进后的重采样方法提升了算法表现。核心代码详尽并附中文注释及操作指南。理论方面,帧差法通过对比连续帧识别移动对象;粒子滤波则基于一组随机粒子估计目标状态,两者结合有效应对复杂场景,如背景杂乱或光照变化,确保跟踪稳定可靠。
|
5月前
|
机器学习/深度学习 算法 调度
Matlab|基于改进鲸鱼优化算法的微网系统能量优化管理matlab-源码
基于改进鲸鱼优化算法的微网系统能量管理源码实现,结合LSTM预测可再生能源和负荷,优化微网运行成本与固定成本。方法应用于冷热电联供微网,结果显示经济成本平均降低4.03%,提高经济效益。代码包括数据分段、LSTM网络定义及训练,最终展示了一系列运行结果图表。
基于高通滤波器的ECG信号滤波及心率统计matlab仿真
**摘要:** 使用MATLAB2022a,实施高通滤波对ECG信号预处理,消除基线漂移,随后分析心率。系统仿真展示效果,核心代码涉及IIR HPF设计,如二阶滤波器的差分方程。通过滤波后的信号,检测R波计算RR间期,从而得到心率。滤波与R波检测是心电生理研究的关键步骤,平衡滤波性能与计算资源是设计挑战。
|
4月前
|
安全
【2023高教社杯】D题 圈养湖羊的空间利用率 问题分析、数学模型及MATLAB代码
本文介绍了2023年高教社杯数学建模竞赛D题的圈养湖羊空间利用率问题,包括问题分析、数学模型建立和MATLAB代码实现,旨在优化养殖场的生产计划和空间利用效率。
216 6
【2023高教社杯】D题 圈养湖羊的空间利用率 问题分析、数学模型及MATLAB代码
|
4月前
|
存储 算法 搜索推荐
【2022年华为杯数学建模】B题 方形件组批优化问题 方案及MATLAB代码实现
本文提供了2022年华为杯数学建模竞赛B题的详细方案和MATLAB代码实现,包括方形件组批优化问题和排样优化问题,以及相关数学模型的建立和求解方法。
139 3
【2022年华为杯数学建模】B题 方形件组批优化问题 方案及MATLAB代码实现
|
4月前
|
数据采集 存储 移动开发
【2023五一杯数学建模】 B题 快递需求分析问题 建模方案及MATLAB实现代码
本文介绍了2023年五一杯数学建模竞赛B题的解题方法,详细阐述了如何通过数学建模和MATLAB编程来分析快递需求、预测运输数量、优化运输成本,并估计固定和非固定需求,提供了完整的建模方案和代码实现。
105 0
【2023五一杯数学建模】 B题 快递需求分析问题 建模方案及MATLAB实现代码