deep_sort_pytorch
deep_sort_pytorch copied to clipboard
MOT using deepsort and yolov3 with pytorch
thanks for your this work! I use feature_extractor.py to extract the features,the model is ckpt.t7,the results as follows: listimgs=os.listdir(imgdir) for i in range(len(listimgs)-1): for j in range(i+1,len(listimgs),1): img = cv2.imread(imgdir+listimgs[i])[:,:,(2,1,0)]...
There are 1261 different pedestrians in MARS dataset (625 for train, 636 for test). But I'm wonder why the `num_classes` is the max of `train_classes` and `test_class` in ReID network....
训练的reid模型可以转成onnx吗
我要训练自己的数据,ckpt.t7需要重新训练吗?怎么训练啊? i want to train my own datasets,does ckpt.t7 model need to retrain again? how to train it?
I can use tracking by my .t7 . In the same time,I also want to use my own weights which is trained with yolov3-spp.cfg and pytorch.I have tried to using...
@ZQPei Hi, can you tell me about: tracking model of ckpt.t7 can convert to tensorrt model of ckpt.trt using inference ? Thanks
RuntimeError: Attempting to deserialize object on CUDA device 2 but torch.cuda.device_count() is 1.
Hi, I am trying to run the **demo_yolov3_deepsort.py** with the **original_ckpt.t7** model but received this following error as it's not the case for the **ckpt.t7** model, do you have any...
请问有没有具体的训练模型的方法呢?我现在想用这个项目追踪车辆,我看到一些博客写道同一辆车的图片应该部分放在Train目录下,另外一部分放在Test目录下,是这样么?应该怎么分呢?训练的时候还有其他参数要修改么?
我在运行yolov3_deepsort_eval.py的时候,法务得到正常的结果,我替换了yolo5的检测器。 with VideoTracker(cfg, args, video_path, result_filename) as vdo_trk: vdo_trk.run() 该段代码只是使用了yolov3_deepsort.py中的追踪,没有任何返回值嘛?这这个调用了mot的数据了嘛? 可以对yolov3_deepsort_eval.py进行一下详细的说明嘛。谢谢