srianant / kalman_filter_multi_object_tracking

Multiple object tracking using Kalman Filter and Hungarian Algorithm - OpenCV
MIT License
533 stars 165 forks source link

Fixed drawing error of trace lines #5

Closed ZachisGit closed 6 years ago

ZachisGit commented 6 years ago

Under "# Draw trace line" the variable assignments are mixed up: x1 = [0][0] =corrected=> [0][0] y1 = [1][0] =corrected=> [0][1] x2 = [0][0] =corrected=> [1][0] y2 = [1][0] =corrected=> [1][1]

ZachisGit commented 6 years ago

I was mistaken, sorry. Fixed a bug in my code at the same time :)