DeepSORT_YOLOv5_Pytorch icon indicating copy to clipboard operation
DeepSORT_YOLOv5_Pytorch copied to clipboard

DeepSORT + YOLOv5

Results 10 DeepSORT_YOLOv5_Pytorch issues
Sort by recently updated
recently updated
newest added

Hi there. I have tried running the programme on 2 seperate instances and have encountered these errors. I have made sure to have connected the webcam (the only webcam too),...

Hello, I am unable to run this implementation ![image](https://user-images.githubusercontent.com/56041154/126111088-703be030-70d4-4f92-832b-e0421c291687.png)

Hello, I want to detect only some specific label in video. Where is the label for tracking?

Hey,wonderful job! But when I used the latest weights , error shows like "AttributeError: Can't get attribute 'C3' on

I want to draw trajectory line for moving object through the video how to do that?

Hello, we run the code successfully, but we find a question of the time costing. In the sort part, the average time is about 40ms, but there are few frames...

Hi,I successfully run this project,but I have tried a lot of weights(yolov5s.pt) of different version from yolov5 official website,It kept telling me with"Can't get attribute 'C3' on "So which version...

As for the new model of yolov5, I have checked that the version of yolov5 you used is 2.0, so I trained a helmet detection model with the corresponding version,...

1.找到选择device的区域 ![Untitled](https://s3-us-west-2.amazonaws.com/secure.notion-static.com/f3cea7f9-dc7e-47eb-a46d-095a427eca39/Untitled.png) 发现没有进入if语句,查看if语句之前的device.type确定是cpu,但是if判断语句中’cpu’是字符串,而device.type是cpu 所以没有进入if语句。 2.device.type的类别是字符串,修改为device.type。还是报错 ![Untitled](https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d14aac58-03fb-4efa-b07c-a431a1661072/Untitled.png) 分析:追溯是执行vdo_trk.run()是出现问题。查看self.image_track(img0)使用的设备,发现是cpu,没问题。接着查看time_synchronized,发现错误 /home/ahei/DeepSORT_YOLOv5_Pytorch-master/yolov5/utils/torch_utils.py line 53 time_synchronized 原来,首先检查了torch.cuda.is_available()有的话调用了torch.cuda.synchronize(),然而我们的gpu在跑代码显存满了,所以报错。修改如下,问题解决。