Ask Your Question
1

Tracker variable bounding box size

asked 2017-02-16 04:40:33 -0600

kevin_lomax gravatar image

I'm trying out different trackers implemented in OpenCV 3.2 (e.g. MIL, TLD, KCF) on videos where the size of the tracking object changes in 2D plane due to perspective distortion. More precisely, the tracking object is a vehicle which starts moving very far from the camera, at one end of a road, and approaches to the camera (hence becomes bigger) as the time passes.

However, I realized that except for TLD, all the other trackers keep the size of the bounding box (i.e. ROI) same although the size of the tracked object changes dramatically. Is that the intended behavior of these trackers? Is there a parameter I can change to make the bounding box sizes variable? How is this issue typically resolved in practical tracker implementations? I can imagine this can cause some problems when an object starts approaching (moving away from) the camera and appears bigger (smaller) on the image.

Thanks.

edit retag flag offensive close merge delete

Comments

Hey Steven,

I'm new to OpenCV, could you please explain in more detail what you do to combat this problem? I'm not familiar with local segmentation.

Thanks, Matt

furlongmt gravatar imagefurlongmt ( 2017-09-21 15:11:38 -0600 )edit

2 answers

Sort by ยป oldest newest most voted
1

answered 2017-02-16 07:32:24 -0600

Yes that is the intended behaviour, because there is no way of predefining how a window will grow. What I usually do is applying some rough local segmentation and like each 20th frame, I adjust the tracker's region of interest.

edit flag offensive delete link more
0

answered 2018-05-28 08:23:35 -0600

Although this is the intended behaviour for most of the trackers, along with the TLD tracker, both the GOTURN and Median Flow tracker adjust the scale of the bounding boxes as they track.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-02-16 04:40:33 -0600

Seen: 2,852 times

Last updated: Feb 16 '17