-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
YOLOv9 + DeepSORT #98
Comments
Oh, no. No more AI-generaated messages, please. |
Congrats @sujanshresstha seems very good! |
Hi @jdiaz97, |
Added to readme. |
I am not sure, but you may need to check which one is correct. |
I have opted to use Inside the if self.pt: # PyTorch
y = self.model(im, augment=augment, visualize=visualize) if augment or visualize else self.model(im)
if isinstance(y, (list, tuple)):
return self.from_numpy(y[0]) if len(y) == 1 else [self.from_numpy(x) for x in y] Since the model outputs an aggregated single tensor even for multiple object detection, I have double-checked with |
Bytetrack is better for practical application than Deepsort for less latency |
Hi,I hope you're doing well. I've integrated YOLOv9 with DeepSORT in the following repository: https://github.com/sujanshresstha/YOLOv9_DeepSORT.git
The text was updated successfully, but these errors were encountered: