kcg2015 / Vehicle-Detection-and-Tracking

Computer vision based vehicle detection and tracking using Tensorflow Object Detection API and Kalman-filtering

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A question about video tracking

younghuvee opened this issue · comments

Hi, thanks for your amazing project, i have a question about video tracking, how can i see the different ID for car in the final output video?

Sorry for the late reply, you can modify the following function in the helper.py:
draw_box_label(img, bbox_cv2, box_color=(0, 255, 255), show_label=True).
Hope this helps.

Hello,I mean that can I give the car an ID number to track it in the output video?

Yes. Please see L148: tmp_trk.id = track_id_list.popleft() # assign an ID for the tracker.

Thank you, can i put 'ID' text on the detect rectangle just like this

text_x= 'x='+str((left+right)/2)
cv2.putText(img,text_x,(left,top-25), font, font_size, font_color, 1, cv2.LINE_AA)
text_y= 'y='+str((top+bottom)/2)
cv2.putText(img,text_y,(left,top-5), font, font_size, font_color, 1, cv2.LINE_AA)

@HWYangege this my twitter address , looking forward your reply^_^

Of course. Feel free to make any changes as you see fit.

@younghuvee, let me close this issue for now.