got-10k / toolkit

Official Python toolkit for generic object tracking benchmark GOT-10k and beyond
http://got-10k.aitestunion.com/
MIT License
555 stars 95 forks source link

Some problem in VOT2018-LT #31

Closed NklausMikealson closed 4 years ago

NklausMikealson commented 4 years ago

Hi, Thank for your excellent toolkit for object tracking. I try to run my code on VOT2018_LT dataset, but it can not work. I find a problem that the toolkit can not work when the groundtruth is 'nan'. The exception message is here: IllegalArgumentException: Points of LinearRing do not form a closed linestring Shell is not a LinearRing I'm glad to receive your respond.

NklausMikealson commented 4 years ago

Set the experiments='unsupervised' can solve this problem. The reason is VOT2018-LT use OPE (once process evaluate) mode. 'unsupervised' == 'OPE'

So I set my experiment object as follow: ExperimentVOT('data/VOT2018-LT', version='LT2018', experiments='unsupervised'),

Maybe it can help others who meet the same problem.