• 大小: 45KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-08
  • 语言: Matlab
  • 标签: KCF  算法  matlab  源码  

资源简介

KCF算法matlab源码 KCF算法代码,KCF算法是一种优良的跟踪算法,源码!!

资源截图

代码片段和文件信息

function video_name = choose_video(base_path)
%CHOOSE_VIDEO
%   Allows the user to choose a video (sub-folder in the given path).
%
%   Joao F. Henriques 2014
%   http://www.isr.uc.pt/~henriques/

%process path to make sure it‘s uniform
if ispc() base_path = strrep(base_path ‘\‘ ‘/‘); end
if base_path(end) ~= ‘/‘ base_path(end+1) = ‘/‘; end

%list all sub-folders
contents = dir(base_path);
names = {};
for k = 1:numel(contents)
name = contents(k).name;
if isdir([base_path name]) && ~any(strcmp(name {‘.‘ ‘..‘}))
names{end+1} = name;  %#ok
end
end

%no sub-folders found
if isempty(names) video_name = []; return; end

%choice GUI
choice = listdlg(‘ListString‘names ‘Name‘‘Choose video‘ ‘SelectionMode‘‘single‘);

if isempty(choi

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1986  2014-06-24 06:49  external.txt

     文件       3169  2014-05-03 04:43  fhog.m

     文件        939  2014-05-03 04:43  gaussian_correlation.m

     文件       1292  2014-05-03 04:43  gaussian_shaped_labels.m

     文件       1237  2014-05-03 04:43  get_features.m

     文件        806  2014-05-03 04:43  get_subwindow.m

     文件      23054  2013-09-29 06:54  gradientMex.mexa64

     文件      30720  2014-01-28 09:56  gradientMex.mexw64

     文件        568  2014-05-03 04:43  linear_correlation.m

     文件       3132  2014-05-03 04:43  load_video_info.m

     文件        799  2014-05-03 04:43  polynomial_correlation.m

     文件       1455  2014-05-03 04:43  precision_plot.m

     文件       4279  2014-06-24 06:53  readme.txt

     文件       7686  2017-11-22 10:50  run_tracker.m

     文件       2404  2017-11-13 13:06  show_video.m

     文件       5887  2014-05-03 04:43  tracker.m

     文件       7692  2013-12-27 04:05  videofig.m

     文件        897  2014-05-03 04:43  choose_video.m

     文件       1744  2017-10-08 21:35  download_videos.m

----------- ---------  ---------- -----  ----

                99746                    19


评论

共有 条评论