24小时热门版块排行榜    

查看: 926  |  回复: 0

winter678

新虫 (初入文坛)

[交流] 有做过多假设目标跟踪(mht)的吗? 这个“剪枝”程序对应的是什么方法?

% Prune cuts less possible hypoes and corresponding state estimations 剪枝
% from cellHypo and cellTarg as well as take record of good estimations.
%
% Syntax:
%   [cellEstm, cellHypo, cellTarg] = ...
%       Prune(cellHypo, cellTarg, M, N, t, LP)
%
% In:
%   cellEstm - a cell array containing the state estimation for each
%       target. The structure of each cell is {idx, startTime, matX}.
%       The startTime is the time step on which the target is confirmed.一个包含状态估计为每个单元阵列
%的目标。每个单元的结构{ idx、开始时间、matX }。目标确认作为的时间作为开始时间。
%   cellHypo - a cell array of size 1*(1+M+M^2+...+M^N). The structure
%       of each cell in the cell array is {asso, prob}, where asso is a
%       column vector denoting the assignment of a set of measurements;
%       prob is a scalar denoting narual log of likelihood of this hypo. cellHypo -单元阵列的大小是1 *(1 + M + M ^ 2 +…+ M ^ N)结构
%   cellTarg - a cell array of the same size of cellHypo. Each cell in
%       the cell array is called oneCase which gives a set of estimations
%       for all targets according to the correspoding hypo in cellHypo.
%       The structure of each cell in oneCase is {idx, lifePoint, X, P}
%       describing one target.
%   M - number of hypoes generated for one seed hypo 一个干生成M个枝
%   N - scan depth%扫描深度
%   t - current time step. Note MHT introduces time delay, so at time
%       step t we can only confirm things happened at step t-N+1.
%   LP - the confirmed hypo may contains some tentative targets that are
%       not included in previous estimations (i.e. input cellEstm). If
%       the lifePoints of such targets are not less than LP, then they
%       are confirmed to be new targets.
%
% Out:
%   cellEstm - updated cellEstm
%   cellHypo - cellHypo after pruning
%   cellTarg - cellTarg after pruning  
  
function [cellEstm, cellHypo, cellTarg] = Prune...
    (cellEstm, cellHypo, cellTarg, M, N, t, LP)

% use the latest probabilities as the standard to judge%%???到54行 不懂啊
head = 2;
for i = 1 : N-1
    head = head + M^i;
end
rear = head + M^N - 1;
arrayProb = cellfun(@(v) v{2}, cellHypo(head : rear));%为cell数组的每个cell执行指定的函数 fun可以是特殊函数或者句柄
x = find(arrayProb == min(arrayProb)); % -log(prob), so find minimum
chooseBranch = ceil(x/M^(N-1));
idx = 1;
chooseIdx = [];
for i = 1 : N
    chooseIdx = [chooseIdx, ...
        idx+(chooseBranch-1)*M^(i-1)+1 : idx+chooseBranch*M^(i-1)];
    idx = idx + M^i;
end

% pick up the right branch
cellHypo = cellHypo(chooseIdx);
cellTarg = cellTarg(chooseIdx);

% update cellEstm
confirmedCase = cellTarg{1}; % the root of the hypo tree
for i = 1 : size(confirmedCase, 2)
    aTarg = confirmedCase{i};
    idx = aTarg{1};
    lifePoint = aTarg{2};
    X = aTarg{3};
    if lifePoint == 0
        continue;
    else
        flg = find(cellfun(@(v) v{1}, cellEstm) == idx);
        if isempty(flg) % maybe a new target appears
            if lifePoint >= LP
                newTarg = {idx, t-N+1, X};
                cellEstm = [cellEstm, newTarg];
            end
        else % an existed target
            thisTarg = cellEstm{flg};
            thisTarg{3} = [thisTarg{3}, X];
            cellEstm{flg} = thisTarg;
        end
    end
end

%%怎么实现的剪枝啊? 求交流
回复此楼

» 本帖附件资源列表

  • 欢迎监督和反馈:小木虫仅提供交流平台,不对该内容负责。
    本内容由用户自主发布,如果其内容涉及到知识产权问题,其责任在于用户本人,如对版权有异议,请联系邮箱:xiaomuchong@tal.com
  • 附件 1 : MHT最小demo程序matlab.zip
  • 2016-06-14 16:30:15, 72.3 K

» 猜你喜欢

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 winter678 的主题更新
普通表情 高级回复 (可上传附件)
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 284求调剂 +6 Zhao anqi 2026-03-22 6/300 2026-03-23 09:23 by king123!
[考研] 招08考数学 +4 laoshidan 2026-03-20 11/550 2026-03-23 08:47 by laoshidan
[考研] 280分求调剂 一志愿085802 +4 PUMPT 2026-03-22 7/350 2026-03-22 22:13 by 星空星月
[考研] 289材料与化工(085600)B区求调剂 +3 这么名字咋样 2026-03-22 4/200 2026-03-22 17:56 by 云民大李老师
[考博] 招收博士1-2人 +3 QGZDSYS 2026-03-18 4/200 2026-03-22 10:25 by QGZDSYS
[考研] 材料学硕301分求调剂 +7 Liyouyumairs 2026-03-21 7/350 2026-03-21 22:31 by peike
[考研] 材料求调剂 +5 @taotao 2026-03-21 5/250 2026-03-21 20:55 by lbsjt
[考研] 296求调剂 +4 www_q 2026-03-20 4/200 2026-03-21 17:26 by 学员8dgXkO
[考研] 279求调剂 +5 红衣隐官 2026-03-21 5/250 2026-03-21 14:59 by lature00
[考研] 材料与化工(0856)304求 B区 调剂 +3 邱gl 2026-03-21 3/150 2026-03-21 13:47 by lature00
[考研] 279分求调剂 一志愿211 +14 chaojifeixia 2026-03-19 15/750 2026-03-21 13:24 by zhukairuo
[考研] 机械专硕299求调剂至材料 +3 kkcoco25 2026-03-16 4/200 2026-03-21 03:52 by JourneyLucky
[考研] 265求调剂 +9 梁梁校校 2026-03-17 9/450 2026-03-21 02:17 by JourneyLucky
[考研] 求调剂 +3 Ma_xt 2026-03-17 3/150 2026-03-21 02:05 by JourneyLucky
[考研] 304求调剂 +7 司空. 2026-03-18 7/350 2026-03-20 23:08 by JourneyLucky
[考研] 中南大学化学学硕337求调剂 +3 niko- 2026-03-19 6/300 2026-03-20 21:58 by luoyongfeng
[考研] 材料学求调剂 +4 Stella_Yao 2026-03-20 4/200 2026-03-20 20:28 by ms629
[考研] 招收调剂硕士 +4 lidianxing 2026-03-19 12/600 2026-03-20 12:25 by lidianxing
[考研] 277调剂 +5 自由煎饼果子 2026-03-16 6/300 2026-03-17 19:26 by 李leezz
[论文投稿] 有没有大佬发小论文能带我个二作 +3 增锐漏人 2026-03-17 4/200 2026-03-17 09:26 by xs74101122
信息提示
请填处理意见