Paper Study (Yolo-V3 Application)

Study for paper “Gradient Based Learning Applied to Document Recognition”.

Paper

Title: A Novel Implementation of an AI-Based Smart Construction Safety Inspection Protocol in the UAE
Authors: Mohammad Z. Shanti, Chung-Suk Cho, Young-Ji Byon, Chan Yeob Yeun, Tae-Yeon Kim, Song-Kyoo Kim, Ahmed Altunaiji
Publisher: IEEE
Published in: IEEE Access Date of Publication: 14 December 2021
IEEE Keywords:
Safety, Artificial intelligence, Accidents, Injuries, Regulation, Inspection, Head
Source Literature: https://ieeexplore.ieee.org/document/9650892

Summary

The paper presents a novel AI-based technique for monitoring worker safety at construction sites in the UAE. Using a Convolutional Neural Network (CNN) model, the system detects compliance with safety standards, particularly the Personal Fall Arrest System (PFAS), including safety harnesses, lifelines, and safety helmets. With impressive accuracy and precision rates, the model proves effective in preventing accidents and controlling safety violations, offering a significant contribution to mitigating fall-from-height incidents.

Background

  1. Construction Industry Outlook:
    The construction industry in the UAE is expected to experience significant growth over the next five years due to increased investment, government diversification efforts, and favorable economic conditions driven by rising crude-oil prices and non-oil product exports. Safety Challenges: Despite the booming construction industry, ensuring the safety and health of workers remains a challenge. Safety measures are not fully embedded in the industry culture, leading to a rise in work-related incidents and accidents.
  2. Regulatory Efforts:
    The Abu Dhabi Municipality (ADM) has established environment, health, and safety (EHS) regulations for local construction sites. Regulatory authorities conduct enforcement activities, including on-site inspections and penalties, to ensure compliance. However, studies show that incidents and fatalities are still increasing.
  3. Occupational Injuries:
    Occupational injuries account for a significant portion of all injuries in Abu Dhabi, with falls and falling objects being the leading cause. Fall-from-height incidents are particularly prevalent, highlighting the need for improved safety measures.
  4. Importance of Employee Awareness:
    Given the high-risk nature of construction work in the UAE, improving employee awareness of health and safety issues and ensuring compliance with regulations are crucial to preventing injuries, fatalities, and economic losses.
  5. Role of AI in Safety:
    Recent advancements in AI technology offer opportunities to enhance construction safety. Deep learning (DL) techniques, such as YOLOv3, can be used for on-site detection and recognition of work-safety violations, including violations related to falls from heights. However, there is a lack of research applying DL approaches specifically to construction safety inspections.
  6. Research Contribution:
    The paper aims to address this gap by leveraging AI technologies to improve safety inspections at construction sites, particularly focusing on fall protection violations. It proposes enhancing DL approaches for reliable detection and recognition of safety violations using raw image data.

Solving the main problem

Reduce accidents when working at heights.

  1. Approach:
    Developed a deep learning model to detect main components of the Personal Fall Arrest System (PFAS).
  2. Methodology:
    YOLOv3 algorithm applied to a Convolutional Neural Network (CNN) model.
  3. Validation:
    The model was theoretically and experimentally verified using real-life image data.
  4. Application:
    Designed for practical implementation at construction sites.

Result & Contribution

The main contribution of this paper is to provide an AI-based image detection framework to mitigate the likelihood of fall-from-height accidents.

YOLOv3 Structure

image

Architecture of Yolov3

YOLOv3 Feature

  1. High Speed:
    YOLOv3 demonstrates high speed in object detection, capable of processing high-resolution images and videos in real-time.
  2. Single Shot MultiBox Detector (SSD):
    YOLOv3 is an SSD model, allowing simultaneous prediction of multiple bounding boxes and object classes in a single forward pass.
  3. Multi-scale Detection:
    YOLOv3 performs detection at multiple scales, effectively detecting objects of various sizes and aspect ratios.
  4. Deep Learning-based Feature Extraction:
    YOLOv3 utilizes deep neural networks (DNNs) to extract features from images, used for object detection and classification.
  5. Hierarchical Detection:
    YOLOv3 employs hierarchical detection to improve the detection performance of small-sized objects, enhancing its performance in various scenarios.
  6. Multi-scale Training:
    YOLOv3 undergoes multi-scale training to improve the model’s generalization ability, enabling effective detection on images with different resolutions.
  7. Loss Function Design:
    YOLOv3 uses a specialized loss function for training, considering both the accuracy of bounding box positions and object class predictions.

Key Words

  • SSD(Single Shot MultiBox Detector)
  • One stage、two stage Object Detection
  • Ground Truth means labeled images or videos
  • NMS (non-maximum suppression)
  • Skip Connections 解決了深度神經網絡的退化問題
  • multi-part loss function.
  • Bounding Box
  • Anchor Box
  • Darknet Basic Block with a shortcut connection Layer (DBL)
  • Loss
    • Localization Loss
    • Classification Loss
    • Confidence Loss
  • Shortcut Connection Layer
  • Feature Pyramid Network 用於目標檢測和語義分割等計算機視覺任務的神經網絡架構。它的主要目的是處理不同尺度的特徵以提高模型對物體的檢測和分割能力

References

comments