Questions tagged [video-tracking]

Tracking a moving object or feature (e.g. a face) in video input.

126 questions
2
votes
0 answers

Real-Time Multi-Object Tracking with Learning

My Goal is to have real-time MultiTracker with Learning.I used Kalman filter to track an object but i found errors in the estimation while tracking. The object was not been tracked continuously. I want to implement some learning mechanism along…
Suraksha Ajith
  • 872
  • 2
  • 12
  • 23
2
votes
1 answer

Track fast moving fiducial using BoofCV

I am trying to track a person's head with a binary fiducial printed. It can track fine when the person is moving slowly, but when they move their head quickly, it loses the track and then regains it when they stop moving. What can I do to track the…
jjtjj222
  • 51
  • 4
2
votes
0 answers

What is the best way to detect motions on video when the camera moves?

What is the best way to detect motions of objects on video (exclude ego motion of camera) when the my camera moves? I have real-time 50 FPS fullHD 1920x1080 video-stream. Camera has ego motion. I.e. I must do: estimate motion of my camera between…
Alex
  • 12,578
  • 15
  • 99
  • 195
2
votes
3 answers

Occlusion with camshift

I am working on object tracking by camshift algorithm. For the time being I am using the inbuilt opencv code wherein I have trouble dealing with occlusion. hsv = cv2.cvtColor(self.frame, cv2.COLOR_BGR2HSV) mask = cv2.inRange(hsv, np.array((0.,…
kushal
  • 301
  • 1
  • 7
  • 18
2
votes
1 answer

Combination of camshift and opencv

I'm trying to do object detecting jobs using OpenCV. But there is something confuses me. Tracking & predicting algorithm like camshift and kalman filters can fulfill the task of tracking while SURF matching methods can also do that. I don't quite…
1
vote
0 answers

Can I track objects by mapping their coordinates from a sequence of images?

I have a video of simple moving dots (that sometimes overlap) that is saved as a sequence of images. At each image I detect all the dots and save their coordinates: (snapshot 1 -> snapshot 2) I would like to infer the trajectory of each dot. The…
1
vote
1 answer

How to get tracking confidence from KCF Tracker in opencv-contrib-python?

When tracking an object using the KCF Tracker from opencv, is there a way to get the actual confidence value of the tracker outputted? I have searched around and this page was the closest I could find:…
mcddaly
  • 11
  • 2
1
vote
0 answers

Is there any way to add time range in videos using Python just like in YouTube videos

I am currently working on a system where I need to mark timings in the video. Suppose if I have a video of 5 minutes and I want to track an item in it which comes in 1:00-2:05 and 3:00-4:00. So I want to mark videos from 1min to 2min 5sec and from…
1
vote
1 answer

SORT tracking algorithm not working when no objects are detected

I'm trying to implement the sort algorithm on my own custom object detector, but i'm having some issues regarding to the case of empty detection (since initial frames don't have objects yet) I've cloned the original sort repository from…
yieniggu
  • 384
  • 1
  • 7
  • 20
1
vote
0 answers

Advice on speeding up this code tracking small, fast moving parts passing through an area of interest using openCV in python

I wrote this code to track small moving objects falling down a chute, the code work buts runs to slowly using 60 fps 1920 by 1080 footage the code only runs at about 10 fps. The problem there is somewhat self explanatory as I need the program to be…
1
vote
1 answer

Expected an Integer

I am getting error in last line of the code. Saying "Expected an Integer". Actually this code took from VGGNET. I am using Python 3.6.9. import theano.tensor as T batch,in_channels,H,W = T.shape(x) self.VGGout_resize = 16 xt = x[:,::-1,:,:] xt =…
1
vote
1 answer

unable to run self.tracker = cv2.Tracker_create() on opencv 4.X on win10

self.tracker = cv2.Tracker_create(tracker_type) AttributeError: module 'cv2.cv2' has no attribute 'Tracker_create' I have tried the method supported in Unable to run Tracking on Open CV 3.4.1 on Python 3.6.6, but it does not work. self.tracker =…
1
vote
0 answers

how to cancel the target object of MultiTracker in opencv-python

I'm using python-opencv to complete my undergraduate graduation project and I need to use MultiTracker to implement multi-target detection and tracking functions. However, I cannot cancel the target object after it disappeared from the screen. I'm…
qizidog
  • 113
  • 9
1
vote
1 answer

CSRT algorithm not updating target

I am using OPENCV built-in tracker CSRT for object detection and tracking, I found it best for using but I have question here when the target gets out of frame it still have a bounding box at last position he tracked when target comes back to frame…
Talha Farooq
  • 54
  • 2
  • 8
1
vote
1 answer

How to find redundant paths (subpaths) in the trajectory of a moving object?

I need to track a moving deformable object in a video (but only 2D space). How do I find the paths (subpaths) revisited by the object in the span of its whole trajectory? For instance, if the object traced a path, p0-p1-p2-...-p10, I want to find…
Dr. Strange
  • 87
  • 11
1 2
3
8 9