huanglianghua/GlobalTrack

结果在tracker_benchmark上表现很差

lishuo-0 opened this issue · 4 comments

Result of attributes -- 'GlobalTrack'
'ALL' overlap : 10.5% failures : 10.0
'BC' overlap : 10.0% failures : 10.0
'DEF' overlap : 9.9% failures : 10.0
'FM' overlap : 11.2% failures : 10.0
'IPR' overlap : 11.0% failures : 9.9
'IV' overlap : 10.8% failures : 10.0
'LR' overlap : 9.0% failures : 10.0
'MB' overlap : 10.9% failures : 10.0
'OCC' overlap : 9.5% failures : 10.0
'OPR' overlap : 10.2% failures : 10.0
'OV' overlap : 10.9% failures : 10.0
'SV' overlap : 10.8% failures : 10.0
8cf167323b9b975113a30fe0c3dc6db

@lishuo-0 This problem is likely to be caused by format inconsistencies.

The output format of GlobalTrack is [x1, y1, x2, y2]. (upper-left and lower-right coordinates)

The default format of tracker_benchmark (from OTB website) is [x1, y1, width, height].

在哪里可以改生成的格式呢

可以在global_track.py#L76加一句:

results[:, 2:4] = results[:, 2:4] - results[:, 0:2] + 1

The evaluation results of GlobalTrack on DTB70 seem not satisfying.
I've changed the output format before evaluation. Any suggestions for such results?
image