Introduction to Track Logic

        探测有可能是一个新的track,也有可能是误探测。Track如果没有被匹配,需要coast到删除。

        所以如何confirm新的track,如何delete旧的track?

        两种方法:

        1、History-based: 如果长时间被跟踪到就confirm,如果长时间丢失就delete。

        This type of logic is often referred to as M-out-of-N or Last-N, meaning that out of Nupdates, the track must be detected at least _M _ times for it to be confirmed.

        2、Score-based: we use the score, defined as the log of the likelihood,如果score低于阈值就delete,大于阈值就confirm。

        

例子:history-based

        You want to confirm a track after 3 detections in 5 updates (3-out-of-5), and delete it after 6 consecutive misses.

        确认跟踪逻辑: 

        删除跟踪逻辑:

 

 例子:Score-based

scoreLogic = trackScoreLogic('ConfirmationThreshold', 25, 'DeletionThreshold', -5)

        1、ConfirmationThreshold  = 25, DeletionThreshold = -5 。

         2、上图是探测的每次结果,总共9次探测, Score先上升(第4次的时候下降了),上到25的时候,confirm。然后下降,当下降到MaxScore-5的时候,delete。下图阐释了算法的逻辑。 

        3、难点是如何计算score?

        There is also a need to know how likely the detection is that of a real target, based on its detection probability, or how likely it is to be false, based on its false alarm rate. Additionally, if the track is new, you need to account for the rate, beta , at which new targets are likely to be detected in a unit volume.

        这里没看懂???

pd = 0.9;   % Probability of detection
pfa = 1e-6; % Probability of false alarm
volume = 1; % The volume of a sensor detection bin
beta = 0.1; % New target rate in a unit volume
wasInitialized = false; % Has the object been initialized yet?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值