当前位置:   article > 正文

OpenCV与AI深度学习 | 实战 | 基于YOLOv9和OpenCV实现车辆跟踪计数(步骤 + 源码)_图像识别经过的车辆并计数深度学习

图像识别经过的车辆并计数深度学习

本文来源公众号“OpenCV与AI深度学习”,仅用于学术分享,侵权删,干货满满。

原文链接:实战 | 基于YOLOv9和OpenCV实现车辆跟踪计数(步骤 + 源码)

导  读

    本文主要介绍使用YOLOv9和OpenCV实现车辆跟踪计数(步骤 + 源码)。 

实现步骤

    监控摄像头可以有效地用于各种场景下的车辆计数和交通流量统计。先进的计算机视觉技术(例如对象检测和跟踪)可应用于监控录像,以识别和跟踪车辆在摄像机视野中移动。

【1】安装ultralytics,因为它拥有直接使用 YoloV9 预训练模型的方法。

pip install ultralytics

【2】完成后,就可以创建跟踪器函数来跟踪对象了。我们只是为此创建了一个名为tracker.py的python文件。

  1. import math
  2. class CustomTracker:
  3. def __init__(self):
  4. # Store the center positions of the objects
  5. self.custom_center_points = {}
  6. # Keep the count of the IDs
  7. # each time a new object id detected, the count will increase by one
  8. self.custom_id_count = 0
  9. def custom_update(self, custom_objects_rect):
  10. # Objects boxes and ids
  11. custom_objects_bbs_ids = []
  12. # Get center point of new object
  13. for custom_rect in custom_objects_rect:
  14. x, y, w, h = custom_rect
  15. cx = (x + x + w) // 2
  16. cy = (y + y + h) // 2
  17. # Find out if that object was detected already
  18. same_object_detected = False
  19. for custom_id, pt in self.custom_center_points.items():
  20. dist = math.hypot(cx - pt[0], cy - pt[1])
  21. if dist < 35:
  22. self.custom_center_points[custom_id] = (cx, cy)
  23. custom_objects_bbs_ids.append([x, y, w, h, custom_id])
  24. same_object_detected = True
  25. break
  26. # New object is detected we assign the ID to that object
  27. if same_object_detected is False:
  28. self.custom_center_points[self.custom_id_count] = (cx, cy)
  29. custom_objects_bbs_ids.append([x, y, w, h, self.custom_id_count])
  30. self.custom_id_count += 1
  31. # Clean the dictionary by center points to remove IDS not used anymore
  32. new_custom_center_points = {}
  33. for custom_obj_bb_id in custom_objects_bbs_ids:
  34. _, _, _, _, custom_object_id = custom_obj_bb_id
  35. center = self.custom_center_points[custom_object_id]
  36. new_custom_center_points[custom_object_id] = center
  37. # Update dictionary with IDs not used removed
  38. self.custom_center_points = new_custom_center_points.copy()
  39. return custom_objects_bbs_ids

【3】编写车辆计数的主要代码。

  1. # Import the Libraries
  2. import cv2
  3. import pandas as pd
  4. from ultralytics import YOLO
  5. from tracker import *

    导入所有必要的库后,就可以导入模型了。我们不必从任何存储库下载模型。Ultralytics 做得非常出色,让我们可以更轻松地直接下载它们。

model=YOLO('yolov9c.pt')

    这会将 yolov9c.pt 模型下载到当前目录中。该模型已经在由 80 个不同类别组成的 COCO 数据集上进行了训练。现在让我们指定类:

​​​​​​​class_list = ['person', 'bicycle', 'car', 'motorcycle', 'airplane', 'bus', 'train', 'truck', 'boat', 'traffic light', 'fire hydrant', 'stop sign', 'parking meter', 'bench', 'bird', 'cat', 'dog', 'horse', 'sheep', 'cow', 'elephant', 'bear', 'zebra', 'giraffe', 'backpack', 'umbrella', 'handbag', 'tie', 'suitcase', 'frisbee', 'skis', 'snowboard', 'sports ball', 'kite', 'baseball bat', 'baseball glove', 'skateboard', 'surfboard', 'tennis racket', 'bottle', 'wine glass', 'cup', 'fork', 'knife', 'spoon', 'bowl', 'banana', 'apple', 'sandwich', 'orange', 'broccoli', 'carrot', 'hot dog', 'pizza', 'donut', 'cake', 'chair', 'couch', 'potted plant', 'bed', 'dining table', 'toilet', 'tv', 'laptop', 'mouse', 'remote', 'keyboard', 'cell phone', 'microwave', 'oven', 'toaster', 'sink', 'refrigerator', 'book', 'clock', 'vase', 'scissors', 'teddy bear', 'hair drier', 'toothbrush']

现在,下一步是加载您要使用的视频。

  1. tracker=CustomTracker()
  2. count=0
  3. cap = cv2.VideoCapture('traffictrim.mp4')
  4. # Get video properties
  5. fps = int(cap.get(cv2.CAP_PROP_FPS))
  6. width = int(cap.get(cv2.CAP_PROP_FRAME_WIDTH))
  7. height = int(cap.get(cv2.CAP_PROP_FRAME_HEIGHT))
  8. # Create VideoWriter object to save the modified frames
  9. output_video_path = 'output_video.mp4'
  10. fourcc = cv2.VideoWriter_fourcc(*'mp4v') # You can use other codecs like 'XVID' based on your system
  11. out = cv2.VideoWriter(output_video_path, fourcc, fps, (width, height))

在这里,我们在加载视频后获取视频属性,因为它们对于使用计数器重新创建视频并最终将其存储在本地非常有用。

  1. # Looping over each frame and Performing the Detection
  2. down = {}
  3. counter_down = set()
  4. while True:
  5. ret, frame = cap.read()
  6. if not ret:
  7. break
  8. count += 1
  9. results = model.predict(frame)
  10. a = results[0].boxes.data
  11. a = a.detach().cpu().numpy()
  12. px = pd.DataFrame(a).astype("float")
  13. # print(px)
  14. list = []
  15. for index, row in px.iterrows():
  16. # print(row)
  17. x1 = int(row[0])
  18. y1 = int(row[1])
  19. x2 = int(row[2])
  20. y2 = int(row[3])
  21. d = int(row[5])
  22. c = class_list[d]
  23. if 'car' in c:
  24. list.append([x1, y1, x2, y2])
  25. bbox_id = tracker.custom_update(list)
  26. # print(bbox_id)
  27. for bbox in bbox_id:
  28. x3, y3, x4, y4, id = bbox
  29. cx = int(x3 + x4) // 2
  30. cy = int(y3 + y4) // 2
  31. # cv2.circle(frame,(cx,cy),4,(0,0,255),-1) #draw ceter points of bounding box
  32. # cv2.rectangle(frame, (x3, y3), (x4, y4), (0, 255, 0), 2) # Draw bounding box
  33. # cv2.putText(frame,str(id),(cx,cy),cv2.FONT_HERSHEY_COMPLEX,0.8,(0,255,255),2)
  34. y = 308
  35. offset = 7
  36. ''' condition for red line '''
  37. if y < (cy + offset) and y > (cy - offset):
  38. ''' this if condition is putting the id and the circle on the object when the center of the object touched the red line.'''
  39. down[id] = cy # cy is current position. saving the ids of the cars which are touching the red line first.
  40. # This will tell us the travelling direction of the car.
  41. if id in down:
  42. cv2.circle(frame, (cx, cy), 4, (0, 0, 255), -1)
  43. #cv2.putText(frame, str(id), (cx, cy), cv2.FONT_HERSHEY_COMPLEX, 0.8, (0, 255, 255), 2)
  44. counter_down.add(id)
  45. # # line
  46. text_color = (255, 255, 255) # white color for text
  47. red_color = (0, 0, 255) # (B, G, R)
  48. # print(down)
  49. cv2.line(frame, (282, 308), (1004, 308), red_color, 3) # starting cordinates and end of line cordinates
  50. cv2.putText(frame, ('red line'), (280, 308), cv2.FONT_HERSHEY_SIMPLEX, 0.5, text_color, 1, cv2.LINE_AA)
  51. downwards = (len(counter_down))
  52. cv2.putText(frame, ('Vehicle Counter - ') + str(downwards), (60, 40), cv2.FONT_HERSHEY_SIMPLEX, 0.5, red_color, 1,
  53. cv2.LINE_AA)
  54. cv2.line(frame,(282,308),(1004,308),red_color,3) # starting cordinates and end of line cordinates
  55. cv2.putText(frame,('red line'),(280,308),cv2.FONT_HERSHEY_SIMPLEX, 0.5, text_color, 1, cv2.LINE_AA)
  56. # This will write the Output Video to the location specified above
  57. out.write(frame)

        在上面的代码中,我们循环遍历视频中的每个帧,然后进行检测。然后,由于我们仅对车辆进行计数,因此仅过滤掉汽车的检测结果。

        之后,我们找到检测到的车辆的中心,然后在它们穿过人工创建的红线时对它们进行计数。我们可以在下面的视频快照中清楚地看到它们。

我们可以看到,当车辆越过红线时,视频左上角的计数器不断增加。

THE END!

文章结束,感谢阅读。您的点赞,收藏,评论是我继续更新的动力。大家有推荐的公众号可以评论区留言,共同学习,一起进步。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/373976
推荐阅读
相关标签
  

闽ICP备14008679号