libtorch-yolov3-deepsort
libtorch-yolov3-deepsort copied to clipboard
I want to train models on my custom datasets, and use your code to deploy.
首先感谢@weixu000做的很棒的工作! 我用yolov4+TensorRT+torch复现了这个项目,但我发现一个问题,在进行跟踪时,有时候tracker似乎并没有跟踪到目标。但是detector的检测是检测到的,并且置信度还挺高。而且看传给tracker的参数,也只是将rect传过去就可以,与置信度并无关系。 所以我想请教一下,应该如何调整跟踪参数,使得跟踪更加准确并且不会丢呢? 我看deepsort.cpp对iou_mat有一些阈值,是不是要调整这里? 麻烦您方便的时候给与解答 再次感谢@weixu000 !
Would you be able to share your ckpt.bin pre-trained weights? ckpt.t7 from https://drive.google.com/drive/folders/1xhG0kRH1EX5B9_Iz8gQJb7UNnn_riXi6 doesn't seem to be the same format as yours.
When I test your repo i found that in [line 72 of nn_matching.h](https://github.com/weixu000/libtorch-yolov3-deepsort/blob/master/tracking/src/nn_matching.h#L72) have a trouble. when you call `nn_cosine_distance` if for loop ([line 55](https://github.com/weixu000/libtorch-yolov3-deepsort/blob/master/tracking/src/nn_matching.h#L55)), when `i==0`, time taken by...
In file included from /home/libtorch-yolov3-deepsort/detection/src/Detector.cpp:5:0: /home/libtorch-yolov3-deepsort/detection/src/letterbox.h: In function ‘std::array letterbox_dim(c10::IntArrayRef, c10::IntArrayRef)’: /home/libtorch-yolov3-deepsort/detection/src/letterbox.h:11:22: error: missing template arguments before ‘{’ token return std::array{int64_t(img_h * s), int64_t(img_w * s)}; ^ /home/libtorch-yolov3-deepsort/detection/src/letterbox.h:11:22: error: expected...
使用vs2019, win10系统,libtorch1.6.0 gpu版本,opencv4.5.1版本,把ckpt.t7转换成了ckpt.bin,然后推理的时候崩溃?  
我的显卡 Geforce GTX 2070 deepSORT 作者显卡 GeForce GTX 1050 复现hub主代码后 在MOT16数据集上只能跑出 3fps 的帧率(作者论文中是 40fps) 差距有点大 所以想请教下hub主自己实现的帧率是多少? 另附自己在MOT16上的Tracking Results ********************* Your MOT16 Results ********************* IDF1 IDP IDR | Rcll Prcn FAR...
Hello all, I need a bit of help with building the repository. My specifications are as follows: Ubuntu 18.04 libtorch v.1.0.0 OpenCV 3.2 I cloned the repo, created a build...
Hi, The works seem to be well nicely written. While I was trying to include just tracking module for my own project, I could not find "tracking_export.h". Is it missing...