People Detection and Tracking

前端 未结 4 903
春和景丽
春和景丽 2021-02-03 14:57

I want to do pedestrian detection and tracking.

Input: Video Stream from CCTV camera.

Output:

  1. #(no of) people go
4条回答
  •  一整个雨季
    2021-02-03 15:12

    You can use KLT for this purpose as this will tell you the flow of person traveling from left to right then you can compute that by computing line length which in given example is drawn using cv2.line you can use input parameters of this functions to compute your case, little math involved. if there is a flow of pixels from left to right this is case 1 or right to left then case 3 and for no flow case 2. Or you can use this basic tutorial to track object movement. LINK

提交回复
热议问题