nrupatunga / PY-GOTURN

This is the python-caffe implementation of single object tracking from GOTURN paper
MIT License
214 stars 67 forks source link

How to try on videos with no ground truth? #18

Closed arasharchor closed 6 years ago

arasharchor commented 6 years ago

Hi,

I am working on object tracking in aerial videos. I want to try GOTURN on such videos, but none of them is included in VOT14. How can I try new videos?

BigPuns commented 6 years ago

preprocess the video like VOT14, give first frame groudtruth. run the demo after modify the video path

arasharchor commented 6 years ago

@BigPuns great hint. thanks. I am new into VOT14 and worked mostly on detection. Can you please guide me how to do preprocessing like VOT14?

BigPuns commented 6 years ago

give your video frame object bbox save in groundtruth.txt, the save type is "xmin, ymin, xmin, ymax, xmax, ymin, xmax, ymax", you can read the source code in scr/loader/loader_vot.cpp。

arasharchor commented 6 years ago

@BigPuns thanks a lot for your help.