latest/trackers/ #950
Replies: 6 comments 15 replies
-
in "update_with_detections(detections)" example, "tracker = sv.ByteTrack()" "detections = byte_tracker.update_with_detections(detections)" should be "detections = tracker.update_with_detections(detections)" |
Beta Was this translation helpful? Give feedback.
-
how to track in each person wait time in using supervision ? |
Beta Was this translation helpful? Give feedback.
-
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. i found this error while installing super-gradients |
Beta Was this translation helpful? Give feedback.
-
I am currently testing out the bytetrack code with my yolov8 object detection model. I am annotating my video with tracers. The problem I am encountering is that sometimes the tracers are working perfect, but then it seems the model "loses" the object for a little bit, and the tracer restarts. I have already tried changing some of the parameters of bytetrack and am seeing marginally improved results, but nothing that completely fixes the problem. Is this something that is solvable by changing the parameters of bytetrack or something that would be fixed by me training my object detection model again with more data? |
Beta Was this translation helpful? Give feedback.
-
hey @SkalskiP I am doing an analysis with object tracking, so far bot-sort performed well than Bytetrack, but I want to go with Bytetrack, as I aimed to work with videos at 30FPS. Firstly, performed the detection and tracking using supervision. Got the results, but as I want to do lot of analysis in different parts of the frame, to do this I need to pass the detections separately by leaving out some of the labels, to achieve this, I tried the following way. I performed detection and tracking separately (meaning i. Initially, I performed detection on the video and stored the results in a variable 'custom_results' Is there a way that I can pass the labels of required area of interest to the tracker? (As I referred the documentation of supervision, I saw that the detections were taken as tensors.) Can you give any leads on approaching this. Thank you, |
Beta Was this translation helpful? Give feedback.
-
I'm tracking cars using an rtsp link, after a while a get errors such as:
I'm using cv2.VideoCapture(RTSP) to capture the rtsp stream and I have these lines to check the continuity of the stream while True:
ret, frame = cap.read()
if not ret:
print("No frame read")
break so after a while from using the rtsp stream it breaks I know this error might not be related to tracking exclusively but I'm not able to understand why is this problem happening is it something with the rtsp stream itself or my processing or the use of cv2.VideoCapture() or what exactly, can someone help? |
Beta Was this translation helpful? Give feedback.
-
latest/trackers/
A set of easy-to-use utilities that will come in handy in any computer vision project.
https://supervision.roboflow.com/latest/trackers/
Beta Was this translation helpful? Give feedback.
All reactions