Questions tagged [object-tracking]

76 questions
0
votes
1 answer

How to use Multi Tracker with OpenCV 4.6?

I am trying to track multiple objects and to do so I am using a Multi Tracker. This is the part of my code that should initialize the tracker: multiTracker = cv2.MultiTracker_create() for box in boxes: multiTracker.add(cv2.TrackerKCF_create(),…
cou7inho
  • 11
  • 4
0
votes
0 answers

Python client-side frame by frame video requests, server-side object detection and return detected frame and display on python client-side

I am developing object detection and tracking application. I want to send frame by frame video from client-side and inference from server-side then return inferenced frame with flask api, finally take response on client-side and display. I wrote…
0
votes
0 answers

Object Tracking with Tensorflow 2 Object Detection

I'm trying to build an app that uses Tensorflow 2 custom trained object detection model which i succeeded but now that I'm trying to track the detected objects to create statistics about time on screen and the amount of objects with unique id…
SaltyCode
  • 67
  • 1
  • 2
  • 11
0
votes
0 answers

fast moving Object tracking using PTZ camera

I want to track a fast moving object using PTZ camera, is there any algorithms to track a moving object which generates the error of pan tilt of camera to make the moving object to center. Present I'm trying this with PID based object tracking, I'm…
0
votes
0 answers

Computer Vision: How do I use a thermal image as an alpha channel with an RBG image with OpenCV and Python?

Goal: I wish to merge thermal and RGB images into new 4-channel images for DNNs (perhaps pre-trained ones like YOLO) to improve detection and tracking—akin to how the computer vision of autonomous vehicles fuses multiple input sources before…
0
votes
0 answers

Adjusting perspective of a video with OpenCV so that predicted ball trajectory matches reality? (Python)

So, I have been working on a cricket ball tracking project and have managed to do ball detection and tracking fairly successfully. The next step is to predict the future trajectory, using polynomial regression. Below is an illustration of the stage…
V. Jain
  • 13
  • 3
0
votes
0 answers

How to get center coordinates of Custom Trained model in opencv?

I've been able to detect custom object which was trained by teachable machines. I used RPi Easy Object Detection - La Croix Flavor Detector tutorial to detect the object. I'm looking to get the center coordinates of the detected model. Searched in…
0
votes
0 answers

I have pixel coordinates in one plane, am I able to transform them to a new plane using homography and then convert to real world coordinates?

I am using a DeepSORT to gather the x and y coordinates of an object. I am using homography to get a zoomed in bird's-eye-view of a specific portion of the video. I know the real-world distances of the area I zoom into, and want to know the real…
0
votes
0 answers

how to transform Optitrack quaternion to euler from one coodinate system to another

I saw few similar post to this question, but none that provided a concrete final working solution. I'm working with OptiTrack with python, Motive 2.2.0, NatNet SDK 4.0 using the NatNetClient from the examples provided with the SDK. The coordinates…
0
votes
0 answers

Issue facing while dockerization of person tracking

I've build an application which is detecting and tracking region of interest. It workers absolutely fine in my local machine, but when I am dockerazing the app I get this error: "qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in "" " on…
0
votes
0 answers

Can multi-dimension spatial tracking be separated to multiply single-dimension tracking with Kalman filter?

I would like to track an object with multiple dimensions, i.e. 2D point (x, y), where the motion on either dimension is independent. In this case, can I build two Kalman filters on the x-axis and y-axis respectively, instead of having one with a…
Mingzhe
  • 31
  • 5
0
votes
0 answers

Sending a track across cameras

There are two cameras looking at opposite sides. I have two videos sync recorded from them. I have to track persons assigning them a unique ID(done(for the single video)). The problem is when a person goes from first camera's area(red square is…
Plorred
  • 1
  • 1
0
votes
0 answers

Where I can find .caffemodel file to use for my video analysis project

I am working on video analysis for shopping mall and involved object tracking concept using OpenCV’s deep neural network module with Caffe models (face detectors). I need two sets of files: The .prototxt file(s) which define the model architecture…
0
votes
1 answer

How to run Deep_sort on yolov4-tiny on webcam?

I am trying to run deep-sort for real-time object tracking on yolov4-tiny model on webcam from this github repository. https://github.com/theAIGuysCode/yolov4-deepsort But there is only command for yolov4 for real time object detection using webcam.…
0
votes
1 answer

OpenCV: How to detect (and draw rectange on it) all moving objects at video of moving camera?

I want to find all moving objects at video. Right now, I find a foreground mask using background subtraction, then I find contours on that mask and then draw rectangles around contours. But there is possible situation when some interesting object…
Robotex
  • 1,064
  • 6
  • 17
  • 41