deep_sort_pytorch
deep_sort_pytorch copied to clipboard
MOT using deepsort and yolov3 with pytorch
I replace YoloV3 with EfficientDet(0-7) as detection part. But I found the results are worse than before?The error detection is more frequent with low fps(only 5 in D0). Have someone...
How many epochs did you train ? or recommended epochs ?
(pytorch >= 1.1 and torchvision >= 0.3)When compiling the build.sh file in the nms directory, the following error occurred: Permission denied: '/usr/local/lib/python3.8/dist-packages/test-easy-install-2225652.write-test'
original_model have dropout while feature extract: https://github.com/ZQPei/deep_sort_pytorch/blob/master/deep_sort/deep/original_model.py#L69 but model do not have it: https://github.com/ZQPei/deep_sort_pytorch/blob/master/deep_sort/deep/model.py#L91 and self.net do not set eval() in Extractor: https://github.com/ZQPei/deep_sort_pytorch/blob/master/deep_sort/deep/feature_extractor.py#L9 so, original_model will output random embedding while...
I tried to run deep_sort/deep/feature_extractor.py, but there was a problem. Traceback (most recent call last): File "D:/目标检测各模型/deep_sort_pytorch-master/deep_sort/deep/feature_extractor.py", line 56, in feature = extr(img) File "D:/目标检测各模型/deep_sort_pytorch-master/deep_sort/deep/feature_extractor.py", line 44, in __call__ im_batch...
Thanks for your work.It helps me a lot. Could you share the changed CNN structure ?I want to study it.
When i tried `python yolov3_deepsort.py` it returns me error : `RuntimeError: CUDA error: invalid device function` `Segmentaion falult (core dumped)` How can i solved
为什么会出现这样的问题呢
original code : ``` img = ori_img.astype(np.float)/255. img = cv2.resize(img, self.size) img = torch.from_numpy(img).float().permute(2,0,1).unsqueeze(0) img = img.to(self.device) with torch.no_grad(): out_boxes = self.net(img) ``` I suggest using: ``` from PIL import...
你好,我这运行yolov3_deepsort.py时保错: Traceback (most recent call last): File "/e/myl/tracker/deep_sort_pytorch_ZQPei/yolov3_deepsort.py", line 158, in with VideoTracker(cfg, args, video_path=args.VIDEO_PATH) as vdo_trk: File "/e/myl/tracker/deep_sort_pytorch_ZQPei/yolov3_deepsort.py", line 37, in __init__ self.detector = build_detector(cfg, use_cuda=use_cuda) File "/e/myl/tracker/deep_sort_pytorch_ZQPei/detector/__init__.py", line...