bilylee / SiamFC-TensorFlow

A TensorFlow implementation of the SiamFC tracker
MIT License
358 stars 112 forks source link

return tracker score? #112

Open GOBish opened 4 years ago

GOBish commented 4 years ago

I know with Pysot I was able to return a parameter tracker score that reported the confidence of the siam tracking. Is there a parameter with SiamFC-TensorFlow that reports this metric?

How I accomplished this in pysot:

outputs = tracker.track(color_image)
bbox = list(map(int, outputs['bbox']))
score = outputs['best_score']