abewley / sort

Simple, online, and realtime tracking of multiple objects in a video sequence.
GNU General Public License v3.0
3.92k stars 1.09k forks source link

Sort update result box value different than detection #120

Closed KyloEntro closed 3 years ago

KyloEntro commented 3 years ago

Hi,

I analyse the result returned by sort.update(). The bounding box of an object is little different than detection value.

For example, if the object bounding box is (1, 3, 4, 5) in n_th frame, sort.update() return (1, 2.9, 3.6, 5.1, id)

Is it normal ?

abewley commented 3 years ago

Yes, that is normal as the returned boxes are the optimal estimates from a Kalman filter process which is fusing information from multiple timesteps.

KyloEntro commented 3 years ago

Thanks 👍