SiamFC-TensorFlow
SiamFC-TensorFlow copied to clipboard
A TensorFlow implementation of the SiamFC tracker
Hello! I've found a performance issue in /datasets/dataloader.py: `dataset.batch(self.config['batch_size'])`[(here)](https://github.com/bilylee/SiamFC-TensorFlow/blob/f572dca95f2b3b2861f54de467259753428e468c/datasets/dataloader.py#L95) should be calle before `dataset.map(transform_fn, num_parallel_calls=self.config['prefetch_threads'])`[(here)](https://github.com/bilylee/SiamFC-TensorFlow/blob/f572dca95f2b3b2861f54de467259753428e468c/datasets/dataloader.py#L92), which could make your program more efficient. Here is [the tensorflow document](https://tensorflow.google.cn/guide/data_performance?hl=zh_cn#vectorized_mapping) to support it....
Hello, I found a performance issue in the definition of `build_search_images`, nference/inference_wrapper.py, [`tf.to_float(frame_sz[0:2] - 1)`](https://github.com/bilylee/SiamFC-TensorFlow/blob/f572dca95f2b3b2861f54de467259753428e468c/inference/inference_wrapper.py#L127) will be created repeatedly during program execution, resulting in reduced efficiency. I think it should...
这个版本的训练过程没有用到负例吗?看起来只有正例pairs
how to transform the graph of inference to frozen_graph
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...
Has there been any success getting the SiamFC tracker to run using a tensorRT model? thanks.
您好!感谢你的辛勤工作。在使用您给出的benchmark进行评估我的算法时,执行到第六步开始评估时,出现了“no module name siamfc”错误,猜想是第二部替换路径时出现了错误,由于我的算法是参照“StrangerZhang/siamfc-pytorch”,所以run_siamfc.py也是有点不一样的,希望您能给予帮助,不胜感激。
I follow the README to do the tracking part.Everything works well until "6. Show tracking results". There is only the first frame result and the code just stops.So i can't...
AttributeError: 'AxesSubplot' object has no attribute 'set_facecolor'