zero-shot-object-tracking
zero-shot-object-tracking copied to clipboard
Object tracking implemented with the Roboflow Inference API, DeepSort, and OpenAI CLIP.
i got this error when i run your colab ``` File "clip_object_tracker.py", line 360, in detect() File "clip_object_tracker.py", line 104, in detect yolov5_engine = Yolov5Engine(opt.weights, device, opt.classes, opt.confidence, opt.overlap, opt.agnostic_nms,...
Namespace(agnostic_nms=False, api_key=None, augment=False, cfg='/content/zero-shot-object-tracking/models/yolov5s.yaml', classes=None, confidence=0.4, detection_engine='yolov5', device='', exist_ok=False, img_size=640, info=False, max_cosine_distance=0.4, name='exp', names='coco.names', nms_max_overlap=1.0, nn_budget=None, overlap=0.3, project='runs/detect', save_conf=False, save_txt=False, source='/content/zero-shot-object-tracking/example/video/fish.mp4', thickness=3, update=False, url=None, view_img=False, weights='yolov5s.pt') Fusing layers... Using torch...
Hello all, I tried to run this code with webcam. I have used the following command: python clip_object_tracker.py --weights ./weights/best.pt --source 0 --detection-engine yolov7 --info But it have thrown me...
This code was implemented for yolov5 and recently yolov7 detector now my question is How to change it, in order to use with yolov6?? thanks for your help
This repo doesn't support Yolov5 v6.0
Hi, I hope you are doing well it's a great contribution. I want to use this tracker to count the number of objects in frames How can I do that?...
It doesn't seem to be compatible with the lastest Yolov5 repository.
Traceback (most recent call last): File "clip_object_tracker.py", line 360, in detect() File "clip_object_tracker.py", line 160, in detect pred = yolov5_engine.infer(img) File "/home/zx/zero-shot-object-tracking/utils/yolov5.py", line 16, in infer pred = self.model(img, augment=self.augment)[0]...
Is there a way to calculate the speed of the objects during tracking. I want to estimate the speed of any moving object when the algorithm tracks it.
the code runs fine for offline videos but for webcam the above error arises