huanglianghua / open-vot

Open source visual object tracking library in python
MIT License
84 stars 16 forks source link

A bug or something? #13

Open DL-85 opened 6 years ago

DL-85 commented 6 years ago

I'm running the master code and meet a confusing problem. I run the siamfc and kcf tracker on linux server and got the performance use the report code. Then I copy the result directory to my mac, and just use the same report code to draw a curve, but the final performance is different from the linux server. Why the save results file use the save report code but got different performance? I run kcf tracker on mac and copy results file to linux server to report the performance, same phenomenon happened. While I use the same python version(Anaconda/3.6.5) and save numpy version(1.14.3) on both linux and mac. Is this caused by the different implementation of python and numpy between linux and mac? Or somethings other?

DL-85 commented 6 years ago

I think maybe this code "np.savetxt(record_file, rects, fmt='%.3f', delimiter=',')" caused the problem. So I modified it to "np.savetxt(record_file, rects, delimiter=',')" , but it didn't work, same things still happened.