资源简介

多目标跟踪的3D技术 用matlab程序实现

资源截图

代码片段和文件信息

function ContinueTracking(filename startframe numframes)
%function ContinueTracking(filename startframe numframes)

%   filename   - file where the results are saved
%
%   startframe - which frame to restart from?
%              - can be an number or the string ‘end‘
%
%   numframes  - how many frames to track

% Written By:   Alexandru Balan (alb@cs.brown.edu) 
% Last Updated: 1/24/05
%


% Select result file
if nargin < 1
    fprintf(‘Select a file with tracking results ... \n‘);
    [logFilelogPath] = uigetfile(‘*.mat‘‘Tracking log‘);
    fprintf(‘\t%s\n‘ [logPath logFile]);
    filename = [logPathlogFile];
end

load(filename);

if nargin < 2
    str = [‘Starting frame (1:‘ int2str(length(InitParam)) ‘‘‘end‘‘): ‘];
    startframe = input(str);
end    

if startframe == ‘end

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

     文件       1828  2005-11-26 18:16  LeeTracking1.0\ContinueTracking.m

     文件        524  2005-02-22 19:38  LeeTracking1.0\ErrorCode\MAPError.m

     文件       1617  2005-11-23 22:31  LeeTracking1.0\ErrorCode\optimisticError.m

     文件        575  2005-02-22 19:39  LeeTracking1.0\ErrorCode\weightedError.m

    ..AD...         0  2005-11-26 18:02  LeeTracking1.0\ErrorCode

     文件       2463  2005-11-26 18:20  LeeTracking1.0\ErrorGraph.m

     文件       1943  2005-11-26 18:04  LeeTracking1.0\InitPath.m

     文件        770  2005-11-24 10:57  LeeTracking1.0\LogInfo.m

     文件     258575  2006-07-28 12:05  LeeTracking1.0\out\myresults1.mat

     文件     293431  2005-11-26 18:15  LeeTracking1.0\out\results.mat

    ..AD...         0  2006-07-28 12:10  LeeTracking1.0\out

     文件       2859  2005-11-24 10:50  LeeTracking1.0\ShowResults.m

     文件       1046  2005-01-15 19:04  LeeTracking1.0\SupportCode\Beta_AnnealingSmoothingFactor.m

     文件       1240  2005-02-11 05:20  LeeTracking1.0\SupportCode\binarySearch.m

     文件        575  2004-09-24 13:38  LeeTracking1.0\SupportCode\camCalib.m

     文件        505  2004-09-24 13:38  LeeTracking1.0\SupportCode\camEye.m

     文件       3649  2005-11-23 12:48  LeeTracking1.0\SupportCode\checkSelfIntersections.m

     文件       3104  2005-11-23 13:16  LeeTracking1.0\SupportCode\computeSSD.m

     文件       5766  2004-09-24 13:38  LeeTracking1.0\SupportCode\ComputeTrueCylinders.m

     文件        900  2004-09-24 13:38  LeeTracking1.0\SupportCode\divideSegment.m

     文件       2503  2004-09-26 21:50  LeeTracking1.0\SupportCode\drawCylinder2Cam.m

     文件        595  2004-09-24 13:38  LeeTracking1.0\SupportCode\drawTx.m

     文件        454  2004-09-24 13:38  LeeTracking1.0\SupportCode\drawVector.m

     文件        577  2005-11-24 11:07  LeeTracking1.0\SupportCode\edgeDistPixelMap.m

     文件       1066  2005-10-07 00:16  LeeTracking1.0\SupportCode\generateInitialParticleSet.m

     文件       1006  2005-11-26 18:11  LeeTracking1.0\SupportCode\getModelParameters.m

     文件        808  2005-01-14 20:08  LeeTracking1.0\SupportCode\ImgBgs.m

     文件        423  2005-11-24 11:07  LeeTracking1.0\SupportCode\invtxform.m

     文件       1449  2005-11-24 01:39  LeeTracking1.0\SupportCode\learnAngleRange.m

     文件       1437  2005-01-25 22:14  LeeTracking1.0\SupportCode\LoadDataDefaultParameters.m

............此处省略27个文件信息

评论

共有 条评论