及时检测跟踪模块

打印 上一主题 下一主题

主题 776|帖子 776|积分 2328

  1. # 实时检测跟踪模块,并将检测跟踪结果保存到数据库中
  2. # -*- coding: utf-8 -*-
  3. import argparse
  4. import os
  5. os.environ["OMP_NUM_THREADS"] = "1"
  6. os.environ["OPENBLAS_NUM_THREADS"] = "1"
  7. os.environ["MKL_NUM_THREADS"] = "1"
  8. os.environ["VECLIB_MAXIMUM_THREADS"] = "1"
  9. os.environ["NUMEXPR_NUM_THREADS"] = "1"
  10. import sys
  11. import platform
  12. import platform
  13. import numpy as np
  14. from pathlib import Path
  15. import torch
  16. import torch.backends.cudnn as cudnn
  17. from shapely.geometry import Polygon
  18. import numpy as np
  19. import matplotlib.pyplot as plt
  20. import pymysql
  21. import time
  22. from datetime import datetime  
  23. import json
  24. FILE = Path(__file__).resolve()
  25. ROOT = FILE.parents[0]  # yolov5 strongsort root directory
  26. WEIGHTS = ROOT / 'weights'
  27. if str(ROOT) not in sys.path:
  28.     sys.path.append(str(ROOT))  # add ROOT to PATH
  29. if str(ROOT / 'yolov5') not in sys.path:
  30.     sys.path.append(str(ROOT / 'yolov5'))  # add yolov5 ROOT to PATH
  31. if str(ROOT / 'trackers' / 'strongsort') not in sys.path:
  32.     sys.path.append(str(ROOT / 'trackers' / 'strongsort'))  # add strong_sort ROOT to PATH
  33. ROOT = Path(os.path.relpath(ROOT, Path.cwd()))  # relative
  34. from yolov5.models.common import DetectMultiBackend
  35. from yolov5.utils.dataloaders import VID_FORMATS, LoadImages, LoadStreams
  36. from yolov5.utils.general import (LOGGER, Profile, check_img_size, non_max_suppression, scale_boxes, check_requirements, cv2,
  37.                                   check_imshow, xyxy2xywh, increment_path, strip_optimizer, colorstr, print_args, check_file)
  38. from yolov5.utils.torch_utils import select_device, time_sync
  39. from yolov5.utils.plots import Annotator, colors, save_one_box
  40. from trackers.multi_tracker_zoo import create_tracker
  41. def get_connection():
  42.     """创建并返回一个新的数据库连接。"""
  43.     # 数据库连接信息
  44.     host = 'localhost'
  45.     user = 'root'
  46.     password = '123456'
  47.     database = 'video_streaming_database'
  48.     return pymysql.connect(host=host, user=user, password=password, database=database)
  49. def ensure_connection(connection):
  50.     """确保连接有效。如果连接无效,则重新建立连接。"""
  51.     if connection is None or not connection.open:
  52.         print("Connection is invalid or closed. Reconnecting...")
  53.         return get_connection()
  54.     return connection
  55. @torch.no_grad()
  56. def run(
  57.         source='0',
  58.         yolo_weights=WEIGHTS / 'yolov5m.pt',  # model.pt path(s),
  59.         reid_weights=WEIGHTS / 'osnet_x0_25_msmt17.pt',  # model.pt path,
  60.         tracking_method='strongsort',
  61.         tracking_config=None,
  62.         imgsz=(640, 640),  # inference size (height, width)
  63.         cam_ip = '192.168.31.97',
  64.         conf_thres=0.25,  # confidence threshold
  65.         iou_thres=0.45,  # NMS IOU threshold
  66.         max_det=1000,  # maximum detections per image
  67.         device='0',  # cuda device, i.e. 0 or 0,1,2,3 or cpu
  68.         show_vid=False,  # show results
  69.         save_txt=False,  # save results to *.txt
  70.         save_conf=False,  # save confidences in --save-txt labels
  71.         save_crop=False,  # save cropped prediction boxes
  72.         save_trajectories=False,  # save trajectories for each track
  73.         save_vid=True,  # save confidences in --save-txt labels
  74.         nosave=False,  # do not save images/videos
  75.         classes=None,  # filter by class: --class 0, or --class 0 2 3
  76.         agnostic_nms=False,  # class-agnostic NMS
  77.         augment=False,  # augmented inference
  78.         visualize=False,  # visualize features
  79.         update=False,  # update all models
  80.         project=ROOT / 'runs' / 'track',  # save results to project/name
  81.         name='exp',  # save results to project/name
  82.         exist_ok=False,  # existing project/name ok, do not increment
  83.         line_thickness=2,  # bounding box thickness (pixels)
  84.         hide_labels=False,  # hide labels
  85.         hide_conf=False,  # hide confidences
  86.         hide_class=False,  # hide IDs
  87.         half=False,  # use FP16 half-precision inference
  88.         dnn=False,  # use OpenCV DNN for ONNX inference
  89.         vid_stride=1,  # video frame-rate stride
  90.         retina_masks=False,
  91. ):
  92.     source = str(source)
  93.     is_file = Path(source).suffix[1:] in (VID_FORMATS)
  94.     is_url = source.lower().startswith(('rtsp://', 'rtmp://', 'http://', 'https://'))
  95.     webcam = source.isnumeric() or source.endswith('.txt') or (is_url and not is_file)
  96.     if is_url and is_file:
  97.         source = check_file(source)  
  98.     if not isinstance(yolo_weights, list):  # single yolo model
  99.         exp_name = yolo_weights.stem
  100.     elif type(yolo_weights) is list and len(yolo_weights) == 1:  # single models after --yolo_weights
  101.         exp_name = Path(yolo_weights[0]).stem
  102.     else:  # multiple models after --yolo_weights
  103.         exp_name = 'ensemble'
  104.     # 结果保存路径
  105.     project = os.path.join(os.path.dirname(source), (source.split("\")[-1][:-4])) + "_det"
  106.     save_dir = increment_path(Path(project), exist_ok=exist_ok)  # increment run
  107.     (save_dir / 'tracks' if save_txt else save_dir).mkdir(parents=True, exist_ok=True)  # make dir
  108.     # 载入模型
  109.     device = select_device(device)
  110.     model = DetectMultiBackend(yolo_weights, device=device, dnn=dnn, data=None, fp16=half)
  111.     stride, names, pt = model.stride, model.names, model.pt
  112.     imgsz = check_img_size(imgsz, s=stride)  # check image size
  113.     if webcam:
  114.         show_vid = check_imshow()
  115.         dataset = LoadStreams(source, img_size=imgsz, stride=stride, auto=pt, vid_stride=vid_stride)
  116.         nr_sources = len(dataset)
  117.     else:
  118.         dataset = LoadImages(source, img_size=imgsz, stride=stride, auto=pt)
  119.         nr_sources = 1
  120.     tracker_list = []
  121.     for i in range(nr_sources):
  122.         tracker = create_tracker(tracking_method, tracking_config, reid_weights, device, half)
  123.         tracker_list.append(tracker, )
  124.         if hasattr(tracker_list[i], 'model'):
  125.             if hasattr(tracker_list[i].model, 'warmup'):
  126.                 tracker_list[i].model.warmup()
  127.     outputs = [None] * nr_sources
  128.     # Run tracking
  129.     seen, windows, dt = 0, [], (Profile(), Profile(), Profile(), Profile())
  130.     curr_frames, prev_frames = [None] * nr_sources, [None] * nr_sources
  131.    
  132.     # 数据库连接信息
  133.     host = 'localhost'
  134.     user = 'root'
  135.     password = '123456'
  136.     database = 'video_streaming_database'
  137.     connection = pymysql.connect(host=host, user=user, password=password, database=database)
  138.     data = []
  139.     for frame_idx, (path, im, im0s, vid_cap, s) in enumerate(dataset):
  140.         start_time = time.time()
  141.         im_Original = im0s
  142.         # 隔帧操作,实际测试对跟踪计数影响很大
  143.         if frame_idx % 2 != 0:
  144.             im_Original_resieze = cv2.resize(im_Original, dsize=None, fx=0.5, fy=0.5, interpolation=cv2.INTER_CUBIC)
  145.             cv2.imwrite(os.path.join(str(save_dir), cam_ip + "_" + str(frame_idx + 1).zfill(8) + ".jpg"), im_Original_resieze)
  146.             continue
  147.         with dt[0]:
  148.             im = torch.from_numpy(im).to(device)
  149.             im = im.half() if half else im.float()  # uint8 to fp16/32
  150.             im /= 255.0  # 0 - 255 to 0.0 - 1.0
  151.             if len(im.shape) == 3:
  152.                 im = im[None]  # expand for batch dim
  153.         with dt[1]:
  154.             pred = model(im, augment=augment, visualize=visualize)
  155.         with dt[2]:
  156.             pred = non_max_suppression(pred, conf_thres, iou_thres, classes, agnostic_nms, max_det=max_det)
  157.         # 处理检测结果
  158.         for i, det in enumerate(pred):  # detections per image
  159.             seen += 1
  160.             if webcam:  # nr_sources >= 1
  161.                 p, im0, _ = path[i], im0s[i].copy(), dataset.count
  162.                 p = Path(p)  # to Path
  163.                 s += f'{i}: '
  164.                 txt_file_name = p.name
  165.                 save_path = str(save_dir / p.name)  # im.jpg, vid.mp4, ...
  166.             else:
  167.                 p, im0, _ = path, im0s.copy(), getattr(dataset, 'frame', 0)
  168.                 p = Path(p)  # to Pathf
  169.                 # video file
  170.                 if source.endswith(VID_FORMATS):
  171.                     txt_file_name = p.stem
  172.                     save_path = str(save_dir / p.name)  # im.jpg, vid.mp4, ...
  173.                 # folder with imgs
  174.                 else:
  175.                     txt_file_name = p.parent.name  # get folder name containing current img
  176.                     save_path = str(save_dir / p.parent.name)  # im.jpg, vid.mp4, ...
  177.             curr_frames[i] = im0
  178.             s += '%gx%g ' % im.shape[2:]  # print string
  179.             annotator = Annotator(im0, line_width=line_thickness, example=str(names))
  180.             if hasattr(tracker_list[i], 'tracker') and hasattr(tracker_list[i].tracker, 'camera_update'):
  181.                 if prev_frames[i] is not None and curr_frames[i] is not None:  # camera motion compensation
  182.                     tracker_list[i].tracker.camera_update(prev_frames[i], curr_frames[i])
  183.             if det is not None and len(det):
  184.                 det[:, :4] = scale_boxes(im.shape[2:], det[:, :4], im0.shape).round()  # rescale boxes to im0 size
  185.                 for c in det[:, 5].unique():
  186.                     n = (det[:, 5] == c).sum()  # detections per class
  187.                     s += f"{n} {names[int(c)]}{'s' * (n > 1)}, "  # add to string
  188.                 with dt[3]:
  189.                     outputs[i] = tracker_list[i].update(det.cpu(), im0)
  190.                 # 处理跟踪结果
  191.                 if len(outputs[i]) > 0:
  192.                     for j, (output) in enumerate(outputs[i]):
  193.                         bbox = output[0:4]
  194.                         id = output[4]
  195.                         cls = output[5]
  196.                         conf = output[6]
  197.                         bbox_x = int((output[0] + output[2]) / 2)
  198.                         bbox_y = int((output[1] + output[3]) / 2)
  199.                         bbox_w = int(output[2] - output[0])
  200.                         bbox_h = int(output[3] - output[1])
  201.                         
  202.                         if save_vid or save_crop or show_vid:  # Add bbox to image
  203.                             c = int(cls)  # integer class
  204.                             id = int(id)  # integer id
  205.                             label = None if hide_labels else (f'{id} {names[c]}' if hide_conf else \
  206.                                 (f'{id} {conf:.2f}' if hide_class else f'{id} {names[c]} {conf:.2f}'))
  207.                             color = colors(c, True)
  208.                             annotator.box_label(bbox, label, color=color)
  209.                             if save_trajectories and tracking_method == 'strongsort':
  210.                                 q = output[7]
  211.                                 tracker_list[i].trajectory(im0, q, color=color)
  212.                             if save_crop:
  213.                                 bbox = np.array(bbox)                        
  214.                                 if frame_idx % 12 == 0:
  215.                                     save_one_box(bbox.astype(np.int16), im_Original, file = save_dir / f'{id}' /  
  216.                                         (cam_ip + "_"
  217.                                         + str(frame_idx + 1).zfill(8) + "_"
  218.                                         + str(id).zfill(4) + "_"
  219.                                         + str(int(bbox_x)).zfill(4) + "_"
  220.                                         + str(int(bbox_y)).zfill(4) + "_"
  221.                                         + str(int(bbox_w)).zfill(4) + "_"
  222.                                         + str(int(bbox_h)).zfill(4) + "_"
  223.                                         + str(int(float(conf) * 10000))
  224.                                         + f'.jpg'), BGR=True)
  225.                                     # 将检测跟踪中间结果保存到数据库中
  226.                                     connection = ensure_connection(connection)  # 确保连接有效
  227.                                     # 获取当前日期和时刻  
  228.                                     current_time = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
  229.                                     try:
  230.                                         with connection.cursor() as cursor:
  231.                                             # 插入数据的SQL语句
  232.                                             insert_sql = """
  233.                                             INSERT INTO new_detection_tracking_results_1 (camera_ip, frame_number, tracking_id, crop_image_path, event_datetime)
  234.                                             VALUES (%s, %s, %s, %s, %s);
  235.                                             """
  236.                                             # 示例数据
  237.                                             data = [
  238.                                                 (cam_ip,
  239.                                                  int(frame_idx+1),
  240.                                                  int(id),
  241.                                                  save_dir / f'{id}' /  
  242.                                                     (cam_ip + "_"
  243.                                                     + str(frame_idx + 1).zfill(8) + "_"
  244.                                                     + str(id).zfill(4) + "_"
  245.                                                     + str(int(bbox_x)).zfill(4) + "_"
  246.                                                     + str(int(bbox_y)).zfill(4) + "_"
  247.                                                     + str(int(bbox_w)).zfill(4) + "_"
  248.                                                     + str(int(bbox_h)).zfill(4) + "_"
  249.                                                     + str(int(float(conf) * 10000))
  250.                                                     + f'.jpg'),
  251.                                                  current_time)
  252.                                             ]
  253.                                             # 执行插入操作
  254.                                             cursor.executemany(insert_sql, data)
  255.                                         connection.commit()
  256.                                     finally:
  257.                                         pass
  258.             else:   
  259.                 pass
  260.         # # 将检测跟踪的原图,标注图,检测结果保存到数据库中
  261.         im_Original_resieze = cv2.resize(im_Original, dsize=None, fx=0.5, fy=0.5, interpolation=cv2.INTER_CUBIC)
  262.         cv2.imwrite(os.path.join(str(save_dir), cam_ip + "_" + str(frame_idx + 1).zfill(8) + ".jpg"), im_Original_resieze)
  263.         # 保存检测跟踪结果到文件
  264.         if outputs[0] == None:
  265.             track_outputs = []
  266.         else:
  267.             track_outputs = [
  268.                 [float(x[0] / 2), float(x[1] / 2), float(x[2] / 2), float(x[3] / 2), int(x[4]), float(x[6]), ""]
  269.                 for x in outputs[0]
  270.             ]
  271.         data_dict = {}
  272.         for row in track_outputs:
  273.             key = int(row[4])  
  274.             value = row
  275.             data_dict[key] = value
  276.         json_output_path = os.path.join(str(save_dir), cam_ip + "_" + str(frame_idx + 1).zfill(8) + "_track.json")
  277.         with open(json_output_path, 'w') as json_file:
  278.             json.dump(data_dict, json_file, indent=4)
  279.         # 记录结束时间  
  280.         end_time = time.time()  
  281.         # 计算并打印运行时间  
  282.         print(f"第{frame_idx}帧,程序运行时间: {end_time - start_time}秒")
  283.         if end_time - start_time >= 0.0833333333333333333333:
  284.             print(f"第{frame_idx}帧,程序运行时间: {end_time - start_time}秒")
  285.         if (end_time - start_time < 0.0833333333333333333333):
  286.             time.sleep(0.0833333333333333333333-end_time+start_time)
  287. def parse_opt():
  288.     parser = argparse.ArgumentParser()
  289.     parser.add_argument('--yolo-weights', nargs='+', type=Path, default=R'/home/hitsz/yk_workspace/Yolov5_track/weights/train_citys_bdd_4S_crowdhuman_coco_labs_liucl_1215_no_freeze_no_freeze_yolov5m3/weights/v5m_861.pt', help='model.pt path(s)')
  290.     parser.add_argument('--reid-weights', type=Path, default=R'weights\osnet_x1_0_msmt17.pt')
  291.     parser.add_argument('--tracking-method', type=str, default='bytetrack', help='strongsort, ocsort, bytetrack')
  292.     parser.add_argument('--tracking-config', type=Path, default=None)
  293.     parser.add_argument('--source', type=str, default=R"02_output_0.mp4", help='file/dir/URL/glob, 0 for webcam')  
  294.     # 下面为输入为摄像头视频流的参数设置
  295.     # parser.add_argument('--source', type=str, default=R'rtsp://admin:1234qwer@192.168.1.64:554/Streaming/Channels/101', help='file/dir/URL/glob, 0 for webcam')  
  296.     parser.add_argument('--imgsz', '--img', '--img-size', nargs='+', type=int, default=[640], help='inference size h,w')
  297.     parser.add_argument('--cam_ip', type=str, default='192.168.31.97')
  298.     parser.add_argument('--conf-thres', type=float, default=0.45, help='confidence threshold')
  299.     parser.add_argument('--iou-thres', type=float, default=0.25, help='NMS IoU threshold')
  300.     parser.add_argument('--max-det', type=int, default=1000, help='maximum detections per image')
  301.     parser.add_argument('--device', default='cpu', help='cuda device, i.e. 0 or 0,1,2,3 or cpu')
  302.     parser.add_argument('--show-vid', default=False, action='store_true' , help='display tracking video results')
  303.     parser.add_argument('--save-txt', default=True, action='store_true', help='save results to *.txt')
  304.     parser.add_argument('--save-conf', default=True, action='store_true', help='save confidences in --save-txt labels')
  305.     parser.add_argument('--save-crop', default=True, action='store_true', help='save cropped prediction boxes')
  306.     parser.add_argument('--save-trajectories', default=True, action='store_true', help='save trajectories for each track')
  307.     parser.add_argument('--save-vid', default=True, action='store_true', help='save video tracking results')
  308.     parser.add_argument('--nosave', default=False, action='store_true', help='do not save images/videos')
  309.     parser.add_argument('--classes', nargs='+', type=int, help='filter by class: --classes 0, or --classes 0 2 3')
  310.     parser.add_argument('--agnostic-nms', action='store_true', help='class-agnostic NMS')
  311.     parser.add_argument('--augment', action='store_true', help='augmented inference')
  312.     parser.add_argument('--visualize', action='store_true', help='visualize features')
  313.     parser.add_argument('--update', action='store_true', help='update all models')
  314.     parser.add_argument('--project', default=R"/home/hitsz/yk_web/Yolov5_track/results/test_save_results1", help='save results to project/name')
  315.     parser.add_argument('--name', default='test', help='save results to project/name')
  316.     parser.add_argument('--exist-ok', action='store_true', help='existing project/name ok, do not increment')
  317.     parser.add_argument('--line-thickness', default=2, type=int, help='bounding box thickness (pixels)')
  318.     parser.add_argument('--hide-labels', default=False, action='store_true', help='hide labels')
  319.     parser.add_argument('--hide-conf', default=False, action='store_true', help='hide confidences')
  320.     parser.add_argument('--hide-class', default=False, action='store_true', help='hide IDs')
  321.     parser.add_argument('--half', action='store_true', help='use FP16 half-precision inference')
  322.     parser.add_argument('--dnn', action='store_true', help='use OpenCV DNN for ONNX inference')
  323.     parser.add_argument('--vid-stride', type=int, default=1, help='video frame-rate stride')
  324.     parser.add_argument('--retina-masks', action='store_true', help='whether to plot masks in native resolution')
  325.     opt = parser.parse_args()
  326.     opt.imgsz *= 2 if len(opt.imgsz) == 1 else 1  # expand
  327.     opt.tracking_config = ROOT / 'trackers' / opt.tracking_method / 'configs' / (opt.tracking_method + '.yaml')
  328.     print_args(vars(opt))
  329.     return opt
  330. def main(opt):
  331.     check_requirements(requirements=ROOT / 'requirements.txt', exclude=('tensorboard', 'thop'))
  332.     run(**vars(opt))
  333. if __name__ == "__main__":
  334.     opt = parse_opt()
  335.     main(opt)
  336. import { createApp, createElementBlock } from 'vue';
  337. import App from './App.vue';
  338. import "@/assets/less/index.less";
  339. import router from "@/router";
  340. import ElementPlus from 'element-plus'
  341. import 'element-plus/dist/index.css'
  342. import * as ElementPlusIconsVue from '@element-plus/icons-vue'
  343. import {createPinia} from 'pinia'
  344. import "video.js/dist/video-js.css";
  345. import "@/api/mock.js";
  346. import api from '@/api/api'
  347. import {useALLDataStore} from "@/stores"
  348. function isRoute(to){
  349.   const routes = router.getRoutes();
  350.   // 检查是否有匹配的路由
  351.   return routes.some(route => {
  352.     // 处理动态路径匹配
  353.     const regex = new RegExp(`^${route.path.replace(/:\w+/g, '\\w+')}$`);
  354.     return regex.test(to.path);
  355.   });
  356. }
  357. const pinia = createPinia();
  358. const app = createApp(App);
  359. app.config.globalProperties.$api = api;
  360. for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
  361.     app.component(key, component)
  362.   }
  363. app.use(pinia)
  364. const store = useALLDataStore();
  365. app.use(ElementPlus)
  366. store.addMenu(router,"refresh")
  367. app.use(router).mount("#app");
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

曹旭辉

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表