Questions tagged [object-tracking]
76 questions
0
votes
0 answers
Object Detecion and tracking yolov8
Here Everyone I have this code for objection Detecion
from ultralytics import YOLO
import streamlit as st
import cv2
from PIL import Image
import tempfile
def _display_detected_frames(conf, model, st_frame, image):
"""
Display the detected…

saas
- 1
- 2
0
votes
1 answer
[ByteTrack]Tuple indices must be integers or slices, not tuple
I can't figure out how to pass detections to ByteTrack (https://github.com/ifzhang/ByteTrack)
I tried to follow the instructions given by the creator but nothing went as planned.
Here is my code:
# Perform object detection with YOLOv5
…

Yiannis
- 3
- 4
0
votes
0 answers
Is there any way to count individual defects in object tracking yolov5?
Finding issue with object tracking and counting individual objects in yolov5.
I have tried yolov5 object tracking with custom data where I should count every individual defect but its not working with what I expected.
This is my code for object…
0
votes
0 answers
incorrect labels when using DeepSORT tracker
I'm facing an issue while using DeepSORT tracker with my custom trained yolov7 model.
Initially I have trained my object detection model and now I want it to track also. I have downloaded files for DeepSORT tracker. But when I use tracker with with…
0
votes
0 answers
Multiple particle tracking kalman filter across 2D time series (issue with tracks being removed to finish and duplication of tracks?)
I am working on creating a particle detection and tracking python script that I will eventually use for deep learning. Currently, I believe that I am having issues with the tracks duplicating or not being set to finish when they disappear. My lab…

BB03
- 1
0
votes
0 answers
MediaPipe Pose Detection: Conditional on Previous Estimates
I am working on a system that relies on MediaPipe's pose detection to track a person's movement. It currently continuously processes frames from a video stream.
The issue is the landmark predictions sometimes move to another area of the screen…

dylan
- 43
- 1
- 5
0
votes
1 answer
Is it possible to track a rotating object using Sikuli?
I want to make a sikuli script that can track a object that rotates and hides behind another object, just like a "find the ball" game. Is it possible? If it is, how can i achieve it?
Maybe even a way to execute another script via sikuli would do the…
0
votes
0 answers
How to tracking with bounding boxes that only cover the visible part of objects
I'm using DeepSORT to tracking people. The bounding boxes of objects only cover the visible part so Kalman Filter estimate wrong direction of motion. How can I fix it?
EMA state of Kalman Filter, ignore low confident boxes
0
votes
0 answers
Multi object tracking from centroids
I have a stationery video of me pedaling a bike, and my goal is to track the position of my joints and then compute some angles etc. The joints are marked with a color tape. Based on the color of the tape, i threshold the frames, detect contours and…

KarelPrdel
- 99
- 1
- 1
- 7
0
votes
1 answer
How to initialize StrongSORT
I am trying to write a code that performs object tracking (detection and tracking). I first find the detections using Yolov5 but the problem comes when I try to initialize the StrongSort to do the tracking. My code is inspired by this repository (I…

carbassot
- 141
- 1
- 10
0
votes
1 answer
How to provide Intrinsics Parameters to Vuforia with a Custom Driver to remove distortion?
I'm working on a project where I track an object using a Model Target and display its 3D model in a virtual environment for interaction. The user wears a VR headset and views the environment with the 3D model. The camera is placed in front of the…

Lorenzo Gerini
- 1
- 1
0
votes
0 answers
DeepSORT with custom detectors
I have created a class in which am loading my custom weights for yolo v5, v7, and v8 to get detection out of this class I am getting xyxy values and class name. now I want to deploy deep SORT on it by using this specific class with no extra files.…

Hammad Shoukat
- 1
- 1
0
votes
0 answers
Why the output of Dense Optical Flow in OpenCV is not continuous?
I want to track whether worker throw garbage into the truck manually in the video.
Q1: Is Dense Optical Flow in OpenCV a good solution for me?
Q2: I tried to code a sample. But why the flow image is not continuous?
frame 41 and 43 is good , but…
0
votes
0 answers
Android get Touch Position on a remote device and reflect the same position on server screen
Good wishes to all. I am having a situation where I have a streaming server,That runs a video (width = 1260, height = 690). I get this Url and play it in a WebView with random size (as of Android devices are with different resolution and…

SIK
- 1
- 5
0
votes
0 answers
Tensorflow Object Detection model doesnt detect the images in a video
I developed a TensorFlow model with one class (it had a loss of 0.03 and was trained on 680 labelled images.) I am trying to use this model to detect the object on every video frame. However, whenever I run my code, it detects something in the top…

Ibrahim
- 1
- 2