123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- import torch
- import cv2
- import threading
- from datetime import datetime
- from ultralytics import YOLO
- from globals import stop_event,redis_client
- from config import SAVE_IMG_PATH,POST_IMG_PATH1,WELDING_WEARING_MODEL,WELDING_WEARING_VIDEO_SOURCES
- def init_wearing_detection():
- redis_client.set("welding_wearing_human_in_postion",'False')
- redis_client.delete("welding_wearing_items_nums")
- redis_client.delete("welding_wearing_detection_img")
- redis_client.set("welding_wearing_detection_img_flag",'False')
- def start_wearing_detection(start_events):
- # Create threads for each video stream and model
- threads = []
- for model_path in WELDING_WEARING_MODEL:
- event = threading.Event()
- start_events.append(event)
- thread = threading.Thread(target=process_video, args=(model_path,WELDING_WEARING_VIDEO_SOURCES,event))
- threads.append(thread)
- thread.daemon=True
- thread.start()
- # Wait for all threads to complete
- for thread in threads:
- thread.join()
- def process_video(model_path, video_source, start_event):
-
- model = YOLO(model_path)
- cap = cv2.VideoCapture(video_source)
- while cap.isOpened():
- # Read a frame from the video
- success, frame = cap.read()
- if stop_event.is_set():#控制停止推理
- break
- if success:
-
- if cap.get(cv2.CAP_PROP_POS_FRAMES) % 10 != 0:#跳帧检测,
- continue
- x, y, w, h = 786, 0, 385, 1000#剪裁画面的中心区域
- # Crop the frame to the ROI
- cropped_frame = frame[y:y+h, x:x+w]
- # Run YOLOv8 inference on the frame
- if model_path==WELDING_WEARING_MODEL[0]:#yolov8s,专门用来检测人
- #model.classes = [0]#设置只检测人一个类别
- results = model.predict(cropped_frame,conf=0.6,verbose=False,classes=[0])#这里的results是一个生成器
- else:
- results = model.predict(cropped_frame,conf=0.6,verbose=False)
- #while not stop_event.is_set():
- for r in results:
- ##下面这些都是tensor类型
- boxes = r.boxes.xyxy # 提取所有检测到的边界框坐标
- confidences = r.boxes.conf # 提取所有检测到的置信度
- classes = r.boxes.cls # 提取所有检测到的类别索引
- ###劳保,不在函数外部定义是因为需要每一帧重新赋值
- wearing_items={"pants" :0,
- 'jacket': 0,
- 'helmet': 0,
- 'gloves': 0,
- 'shoes': 0
- }
-
- for i in range(len(boxes)):
- x1, y1, x2, y2 = boxes[i].tolist()
- confidence = confidences[i].item()
- cls = int(classes[i].item())
- label = model.names[cls]
-
- # if x1 < WEAR_DETECTION_AREA[0] or y1 < WEAR_DETECTION_AREA[1] or x2 > WEAR_DETECTION_AREA[2] or y2 > WEAR_DETECTION_AREA[3]:
- # continue # 跳过不在区域内的检测框
-
- if model_path==WELDING_WEARING_MODEL[0]:#yolov8s,专门用来检测人
- if label=="person" and redis_client.get("welding_wearing_human_in_postion")=='False':
- redis_client.set("welding_wearing_human_in_postion",'True')
- else:
- wearing_items[label] += 1
- if model_path==WELDING_WEARING_MODEL[1]:
- welding_wearing_items_nums = [wearing_items["pants"], wearing_items["jacket"], wearing_items["helmet"], wearing_items["gloves"], wearing_items["shoes"]]
- if redis_client.exists("welding_wearing_items_nums"):
- redis_client.delete("welding_wearing_items_nums")
- redis_client.rpush("welding_wearing_items_nums", *welding_wearing_items_nums)
- if redis_client.get("welding_wearing_detection_img_flag")=='True' and not redis_client.exists("welding_wearing_detection_img"):
- save_time=datetime.now().strftime('%Y%m%d_%H%M')
- imgpath = f"{SAVE_IMG_PATH}/welding_wearing_detection_{save_time}.jpg"
- post_path= f"{POST_IMG_PATH1}/welding_wearing_detection_{save_time}.jpg"
- annotated_frame = results[0].plot()
- cv2.imwrite(imgpath, annotated_frame)
- redis_client.set("welding_wearing_detection_img",post_path)
- start_event.set()
- else:
- # Break the loop if the end of the video is reached
- break
- # Release the video capture object and close the display window
- cap.release()
-
- if torch.cuda.is_available():
- torch.cuda.empty_cache()
- del model
|