• 大小: 14.33MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-01
  • 语言: 其他
  • 标签: 追踪  MUSTer  

资源简介

追踪算法源代码MUSTer_code_v1.1

资源截图

代码片段和文件信息

function [img_files pos target_sz ground_truth video_path] = load_video_info(video_path)

    text_files = dir([video_path ‘groundtruth_rect.txt‘]);
    assert(~isempty(text_files) ‘No initial position and ground truth (*_gt.txt) to load.‘)

    f = fopen([video_path text_files(1).name]);
    try
        ground_truth = textscan(f ‘%f%f%f%f‘ ‘Returnonerror‘false);  
    catch   
        frewind(f);
        ground_truth = textscan(f ‘%f %f %f %f‘);  
    end
    ground_truth = cat(2 ground_truth{:});
    fclose(f);

    %set initial position and size

    target_sz = [ground_truth(13) ground_truth(14)];
    pos = [ground_truth(11) ground_truth(12)];
 
%for these sequences we must limit ourselves to a range of frames.
%for all others we just load all png/jpg files in the folder.
img_files = dir([video_path ‘img/*.jpg‘]);
    if numel(img_files) == 0
        img_files = dir([video_path ‘img/*.png‘]);
    end
img_files = sort({img_files.name});

    video_path = [video_path ‘img/‘];

end


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-11 14:57  MUSTer_code_v1.1\ICF\
     文件        2781  2015-03-10 15:46  MUSTer_code_v1.1\ICF\external.txt
     文件        3169  2014-11-24 11:19  MUSTer_code_v1.1\ICF\fhog.m
     文件         708  2014-11-24 11:19  MUSTer_code_v1.1\ICF\get_ICF_params.m
     文件       19354  2014-11-23 16:22  MUSTer_code_v1.1\ICF\gradientMex.cpp
     文件       23054  2014-11-24 11:19  MUSTer_code_v1.1\ICF\gradientMex.mexa64
     文件       30720  2014-11-24 11:19  MUSTer_code_v1.1\ICF\gradientMex.mexw64
     文件       11421  2015-03-10 15:52  MUSTer_code_v1.1\ICF\ICF_tracker.m
     文件        1243  2014-11-24 11:19  MUSTer_code_v1.1\ICF\im2c.m
     文件         942  2015-03-08 17:44  MUSTer_code_v1.1\ICF\st_gaussian_correlation.m
     文件        1295  2015-03-08 17:44  MUSTer_code_v1.1\ICF\st_gaussian_shaped_labels.m
     文件        2051  2015-03-08 17:44  MUSTer_code_v1.1\ICF\st_get_features.m
     文件        1339  2015-03-08 17:44  MUSTer_code_v1.1\ICF\st_get_scale_sample.m
     文件         965  2015-03-08 17:44  MUSTer_code_v1.1\ICF\st_get_subwindow.m
     文件     1142188  2014-11-24 11:19  MUSTer_code_v1.1\ICF\w2crs.mat
     目录           0  2015-03-11 14:57  MUSTer_code_v1.1\Jogging\
     文件        4700  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\groundtruth_rect.1.txt
     文件        4336  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\groundtruth_rect.2.txt
     文件        4700  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\groundtruth_rect.txt
     目录           0  2015-03-11 14:57  MUSTer_code_v1.1\Jogging\img\
     文件       13834  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0001.jpg
     文件       24848  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0002.jpg
     文件       26083  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0003.jpg
     文件       25916  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0004.jpg
     文件       26455  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0005.jpg
     文件       26282  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0006.jpg
     文件       26640  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0007.jpg
     文件       26500  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0008.jpg
     文件       26858  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0009.jpg
     文件       26873  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0010.jpg
     文件       25870  2015-03-08 17:42  MUSTer_code_v1.1\Jogging\img\0011.jpg
............此处省略549个文件信息

评论

共有 条评论