You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
642 B
19 lines
642 B
|
6 months ago
|
# S3315 2025-1-24跟踪算法库修改说明
|
||
|
|
1.修复跟踪锁定后,崩溃问题
|
||
|
|
>注释以下函数调用
|
||
|
|
'''
|
||
|
|
templateMatching::Matcher_SetTemplate(matcher, img, stTargetRect);
|
||
|
|
'''
|
||
|
|
# S3315 2025-2-12跟踪算法库修改说明
|
||
|
|
1.修复日志输出Bug
|
||
|
|
```
|
||
|
|
LOG_DEBUG("pstOutput:stAlarmObjs[{ }]:nOutputID:{}",pstOutput->nAlarmObjCnts, pstOutput->stAlarmObjs[nAlaNum].nOutputID);
|
||
|
|
//改为
|
||
|
|
LOG_DEBUG("pstOutput->stAlarmObjs:{},nOutputID:{}",pstOutput->nAlarmObjCnts, pstOutput->stAlarmObjs[nAlaNum].nOutputID);
|
||
|
|
```
|
||
|
|
2.修改初始化小目标检测信噪比阈值
|
||
|
|
```
|
||
|
|
mDetPara.fSmallDetectGDK = 5.0;
|
||
|
|
//改为
|
||
|
|
mDetPara.fSmallDetectGDK = 7.0;
|
||
|
|
```
|