<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: ADHARSH C</title>
    <description>The latest articles on Forem by ADHARSH C (@adharsh_c_07bb4597017fa8d).</description>
    <link>https://forem.com/adharsh_c_07bb4597017fa8d</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3591783%2F8aa78e80-88e2-4048-af3b-88562221d6f7.png</url>
      <title>Forem: ADHARSH C</title>
      <link>https://forem.com/adharsh_c_07bb4597017fa8d</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/adharsh_c_07bb4597017fa8d"/>
    <language>en</language>
    <item>
      <title>AI-Powered Industrial Safety: Real-Time Monitoring Using YOLOv8 and Edge AI</title>
      <dc:creator>ADHARSH C</dc:creator>
      <pubDate>Wed, 05 Nov 2025 16:33:57 +0000</pubDate>
      <link>https://forem.com/adharsh_c_07bb4597017fa8d/ai-powered-industrial-safety-real-time-monitoring-using-yolov8-and-edge-ai-g7d</link>
      <guid>https://forem.com/adharsh_c_07bb4597017fa8d/ai-powered-industrial-safety-real-time-monitoring-using-yolov8-and-edge-ai-g7d</guid>
      <description>&lt;h2&gt;
  
  
  AI-Powered Industrial Safety: Real-Time Monitoring Using YOLOv8 and Edge AI
&lt;/h2&gt;

&lt;h2&gt;
  
  
  INTRODUCTION
&lt;/h2&gt;

&lt;p&gt;In today’s rapidly advancing industrial landscape, worker safety is paramount. Industries such as construction, mining, oil refining, and manufacturing operate in environments filled with physical, chemical, and operational hazards. While strict safety regulations and Personal Protective Equipment (PPE) protocols exist, ensuring consistent compliance remains a persistent challenge. Human supervisors can overlook violations due to fatigue or limited visibility, and sensor-based systems often fail to provide a comprehensive view of workplace safety.&lt;/p&gt;

&lt;p&gt;With the rise of &lt;strong&gt;Artificial Intelligence (AI)&lt;/strong&gt; and &lt;strong&gt;Computer Vision&lt;/strong&gt;, industries can now shift from manual oversight to &lt;strong&gt;automated, intelligent monitoring systems&lt;/strong&gt;. Using deep learning models such as &lt;strong&gt;YOLO (You Only Look Once)&lt;/strong&gt;, AI can analyze video feeds in real time to detect whether workers are wearing helmets, gloves, and vests, or engaging in unsafe behaviors like smoking in restricted areas.&lt;/p&gt;

&lt;p&gt;This blog presents a detailed overview of our project, &lt;em&gt;“Real-Time Automated Safety Monitoring in Industrial Environments”&lt;/em&gt;, which employs &lt;strong&gt;YOLOv8&lt;/strong&gt; for real-time PPE and behavior detection on &lt;strong&gt;edge devices&lt;/strong&gt;. It demonstrates how AI-powered safety monitoring can reduce accidents, improve compliance, and enhance workplace efficiency — all while operating autonomously and cost-effectively.&lt;/p&gt;




&lt;h2&gt;
  
  
  LITERATURE SURVEY ON EXISTING METHODS
&lt;/h2&gt;

&lt;p&gt;Research into &lt;strong&gt;industrial safety monitoring&lt;/strong&gt; has evolved dramatically, shifting from traditional supervision to vision-based deep learning techniques. A major focus has been the accurate detection of PPE items and unsafe behaviors under complex, dynamic industrial conditions.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Evolution of Safety Monitoring Systems
&lt;/h3&gt;

&lt;p&gt;Earlier systems relied heavily on &lt;strong&gt;manual supervision&lt;/strong&gt;, where safety officers visually confirmed PPE compliance. This method offered contextual understanding but suffered from human error, inconsistency, and lack of scalability. As industries grew in size and complexity, &lt;strong&gt;sensor-based monitoring&lt;/strong&gt; emerged — using RFID tags, smoke detectors, and motion sensors to detect specific events. However, these systems lacked flexibility and often failed to distinguish between legitimate and unsafe conditions.&lt;/p&gt;

&lt;p&gt;The emergence of &lt;strong&gt;computer vision&lt;/strong&gt; and &lt;strong&gt;Convolutional Neural Networks (CNNs)&lt;/strong&gt; enabled a paradigm shift. These models could automatically learn visual patterns, recognize safety equipment, and identify unsafe actions in real time — eliminating the need for handcrafted feature extraction.&lt;/p&gt;




&lt;h3&gt;
  
  
  2. YOLO-Based Research Advances
&lt;/h3&gt;

&lt;p&gt;YOLO has been a breakthrough in real-time object detection due to its &lt;strong&gt;single-shot&lt;/strong&gt; architecture that simultaneously predicts object locations and classes. Variants from &lt;strong&gt;YOLOv3 to YOLOv8&lt;/strong&gt; have progressively enhanced detection accuracy and speed, making them ideal for industrial applications.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;MARA-YOLO (Di et al., 2024)&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Di et al. introduced MARA-YOLO, an efficient model designed for &lt;strong&gt;multiclass PPE detection&lt;/strong&gt; under complex industrial lighting and occlusion. It featured:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;MobileOne-S0 re-parameterized backbone&lt;/strong&gt; for lightweight computation.
&lt;/li&gt;
&lt;li&gt;An &lt;strong&gt;Attentional Space-to-Depth (AS-Block)&lt;/strong&gt; that preserved fine texture details.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;R-C2F and RASFF modules&lt;/strong&gt; for adaptive multi-scale feature fusion.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Their custom KSE-PPE dataset achieved a &lt;strong&gt;6.7% AP50 improvement&lt;/strong&gt; over YOLOv8-s, proving MARA-YOLO’s superiority in PPE detection efficiency — especially for small or partially visible items.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Edge-Based YOLO (Gallo et al., 2022)&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Gallo et al. explored &lt;strong&gt;edge computing for PPE detection&lt;/strong&gt;, integrating YOLO models on low-power devices such as &lt;strong&gt;Raspberry Pi + Intel NCS2&lt;/strong&gt;. The study compared YOLOv4, YOLO-tiny, SSD-MobileNetV2, and CenterNet models. Results showed YOLO-tiny provided the best &lt;strong&gt;real-time performance&lt;/strong&gt;, confirming the practicality of deploying AI-based safety systems directly on embedded devices without relying on cloud servers.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;YOLOv8n-ASF-DH (Lin, 2024)&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Lin’s work enhanced &lt;strong&gt;helmet detection&lt;/strong&gt; using advanced attention and fusion techniques:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Triplet Attention Mechanism&lt;/strong&gt; improved focus on small targets.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Attentional Scale Sequence Fusion (ASF)&lt;/strong&gt; optimized multi-scale detection.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dynamic Head (DyHead)&lt;/strong&gt; allowed adaptive feature scaling.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This model achieved +2.58% &lt;a href="mailto:mAP@0.5"&gt;mAP@0.5&lt;/a&gt; compared to baseline YOLOv8n, demonstrating its robustness in detecting helmets in cluttered or dim environments.&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Unsafe Behavior Detection Research
&lt;/h3&gt;

&lt;p&gt;Detecting unsafe actions, such as smoking in restricted areas, remains challenging because such behaviors involve small, transient, and occluded objects. Two major YOLO-based approaches have addressed this:&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;YOLOv8-MNC (Wang et al., 2023)&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Introduced a model optimized for smoking detection with &lt;strong&gt;Multi-Head Self-Attention (MHSA)&lt;/strong&gt; and &lt;strong&gt;CARAFE upsampling&lt;/strong&gt;. These modules captured global dependencies and reduced information loss, achieving &lt;strong&gt;85.9% detection accuracy&lt;/strong&gt; — a 5.7% improvement over baseline YOLOv8.&lt;/p&gt;

&lt;h4&gt;
  
  
  &lt;strong&gt;Smoking-YOLOv8 (Wang et al., 2024)&lt;/strong&gt;
&lt;/h4&gt;

&lt;p&gt;Enhanced detection for &lt;strong&gt;chemical plant safety&lt;/strong&gt; by integrating:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Selective and Dimension-Preserving Attention (SD-Attn)&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Wise-IoU (WIoU v3)&lt;/strong&gt; loss for precision localization.
This model achieved a &lt;strong&gt;6.18% increase in &lt;a href="mailto:mAP@0.5"&gt;mAP@0.5&lt;/a&gt;&lt;/strong&gt;, excelling under variable lighting and high occlusion conditions.&lt;/li&gt;
&lt;/ul&gt;




&lt;h3&gt;
  
  
  4. Summary of Literature Insights
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Model&lt;/th&gt;
&lt;th&gt;Focus&lt;/th&gt;
&lt;th&gt;Techniques&lt;/th&gt;
&lt;th&gt;Key Results&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;MARA-YOLO (2024)&lt;/td&gt;
&lt;td&gt;PPE Detection&lt;/td&gt;
&lt;td&gt;AS-Block, RASFF&lt;/td&gt;
&lt;td&gt;+6.7% AP50&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Edge-YOLO (2022)&lt;/td&gt;
&lt;td&gt;Edge Deployment&lt;/td&gt;
&lt;td&gt;CNNs on Raspberry Pi&lt;/td&gt;
&lt;td&gt;Real-time &amp;amp; Privacy-preserving&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;YOLOv8n-ASF-DH (2024)&lt;/td&gt;
&lt;td&gt;Helmet Detection&lt;/td&gt;
&lt;td&gt;Triplet Attention, ASF&lt;/td&gt;
&lt;td&gt;+2.58% &lt;a href="mailto:mAP@0.5"&gt;mAP@0.5&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;YOLOv8-MNC (2023)&lt;/td&gt;
&lt;td&gt;Smoking Detection&lt;/td&gt;
&lt;td&gt;MHSA, CARAFE&lt;/td&gt;
&lt;td&gt;+5.7% &lt;a href="mailto:mAP@0.5"&gt;mAP@0.5&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Smoking-YOLOv8 (2024)&lt;/td&gt;
&lt;td&gt;Behavior Monitoring&lt;/td&gt;
&lt;td&gt;SD Attention, WIoU v3&lt;/td&gt;
&lt;td&gt;+6.18% &lt;a href="mailto:mAP@0.5"&gt;mAP@0.5&lt;/a&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;These studies collectively emphasize that &lt;strong&gt;deep learning-based, edge-deployable, real-time systems&lt;/strong&gt; outperform manual or sensor-based monitoring. They provide a robust foundation for developing scalable, AI-driven industrial safety solutions.&lt;/p&gt;




&lt;h2&gt;
  
  
  IDENTIFYING THE PROBLEM
&lt;/h2&gt;

&lt;p&gt;Despite stringent safety regulations, industrial accidents continue to occur due to &lt;strong&gt;non-compliance with PPE&lt;/strong&gt; and unsafe behavior. Manual supervision cannot guarantee consistent vigilance, and sensor-based systems are limited to detecting predefined conditions.&lt;/p&gt;

&lt;p&gt;The key challenges identified are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Lack of Continuous Monitoring:&lt;/strong&gt; Supervisors can’t observe every worker in large-scale operations.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Inflexibility:&lt;/strong&gt; Sensors can detect smoke or RFID tags but can’t confirm proper PPE usage.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;False Alarms:&lt;/strong&gt; Traditional systems often trigger inaccurate alerts.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scalability:&lt;/strong&gt; Expanding hardware-based systems to multi-site operations is costly and impractical.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;To overcome these, there’s a pressing need for an &lt;strong&gt;automated, intelligent, and adaptive&lt;/strong&gt; monitoring system that can detect multiple safety violations simultaneously and operate efficiently in real time.&lt;/p&gt;




&lt;h2&gt;
  
  
  DESIGNING THE COUNTERMEASURE: YOLOv8-BASED MONITORING
&lt;/h2&gt;

&lt;p&gt;Our proposed approach leverages the &lt;strong&gt;YOLOv8 deep learning model&lt;/strong&gt; for &lt;strong&gt;real-time detection of PPE compliance and unsafe behaviors&lt;/strong&gt;. The system architecture integrates several key modules:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ferasg75xazcirtkjtwzt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ferasg75xazcirtkjtwzt.png" alt=" " width="800" height="1321"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Input Module
&lt;/h3&gt;

&lt;p&gt;Captures continuous video feeds from surveillance cameras installed in industrial zones.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Preprocessing
&lt;/h3&gt;

&lt;p&gt;Frames are resized (640×640 or 416×416) and normalized. Data augmentation techniques — including rotations, brightness adjustment, and noise injection — enhance model generalization.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Detection Module
&lt;/h3&gt;

&lt;p&gt;The YOLOv8 model identifies:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;PPE items (helmets, gloves, vests).
&lt;/li&gt;
&lt;li&gt;Unsafe behaviors (smoking, absence of PPE).
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The model uses &lt;strong&gt;Focal-EIoU loss&lt;/strong&gt; and &lt;strong&gt;attention-based features&lt;/strong&gt; for improved detection of small or occluded objects.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Decision Module
&lt;/h3&gt;

&lt;p&gt;Analyzes YOLO outputs to determine compliance. Violations trigger alerts via:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Audio alarms&lt;/strong&gt;,
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SMS/email notifications&lt;/strong&gt;, or
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dashboard logs&lt;/strong&gt; for audit purposes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  5. Edge Deployment
&lt;/h3&gt;

&lt;p&gt;The system is optimized for devices like &lt;strong&gt;Raspberry Pi&lt;/strong&gt;, &lt;strong&gt;Jetson Nano&lt;/strong&gt;, and &lt;strong&gt;Intel NCS2&lt;/strong&gt;, ensuring low latency and privacy-preserving, on-device inference.&lt;/p&gt;




&lt;h2&gt;
  
  
  IMPLEMENTATION DETAILS
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Dataset Composition
&lt;/h3&gt;

&lt;p&gt;Two datasets were developed:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;PPE Dataset:&lt;/strong&gt; Images of workers with and without helmets, gloves, and vests.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Unsafe Behavior Dataset:&lt;/strong&gt; Smoking gestures, cigarettes, and lighter usage under varied conditions.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Model Training
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Framework: PyTorch + Ultralytics YOLOv8
&lt;/li&gt;
&lt;li&gt;Optimizers: Adam / SGD with learning rate scheduling
&lt;/li&gt;
&lt;li&gt;Loss Function: Focal-EIoU
&lt;/li&gt;
&lt;li&gt;Split: 80% training, 10% validation, 10% testing
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Training utilized early stopping and checkpointing to prevent overfitting, achieving strong convergence and high mean Average Precision (mAP) values.&lt;/p&gt;

&lt;h3&gt;
  
  
  Performance Metrics
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Helmet Detection: Precision 0.96, Recall 0.95
&lt;/li&gt;
&lt;li&gt;Vest Detection: Precision 0.94, Recall 0.93
&lt;/li&gt;
&lt;li&gt;Glove Detection: Precision 0.91, Recall 0.90
&lt;/li&gt;
&lt;li&gt;Smoking Detection: Precision 0.92, Recall 0.91
&lt;/li&gt;
&lt;li&gt;
&lt;a href="mailto:mAP@0.5"&gt;mAP@0.5&lt;/a&gt;: 0.905–0.955
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These results validate the robustness of YOLOv8 in detecting diverse safety violations under challenging lighting and occlusion conditions.&lt;/p&gt;




&lt;h2&gt;
  
  
  RESULTS AND DISCUSSION
&lt;/h2&gt;

&lt;p&gt;The system demonstrated reliable, real-time performance in both simulation and hardware deployment. On &lt;strong&gt;Jetson Nano&lt;/strong&gt;, inference latency remained under &lt;strong&gt;50 ms per frame&lt;/strong&gt;, suitable for live CCTV applications.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Qualitative Results:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Visual tests confirmed accurate detection even in cluttered scenes with multiple workers. YOLOv8’s advanced attention modules improved the detection of small gloves and cigarettes — typically difficult targets.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Quantitative Analysis:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
Precision–Recall curves showed balanced performance across PPE categories, with an average F1-score of 0.55 at optimal confidence thresholds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Edge Deployment Benefits:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Local processing ensures privacy.
&lt;/li&gt;
&lt;li&gt;Minimal network dependency.
&lt;/li&gt;
&lt;li&gt;Feasible for continuous 24/7 monitoring.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  FUTURE WORK
&lt;/h2&gt;

&lt;p&gt;Future development directions include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Expanding PPE detection to include &lt;strong&gt;boots, face shields, and ear protection&lt;/strong&gt;.
&lt;/li&gt;
&lt;li&gt;Integrating &lt;strong&gt;pose estimation&lt;/strong&gt; to detect unsafe body postures or mobile phone usage.
&lt;/li&gt;
&lt;li&gt;Enhancing robustness using &lt;strong&gt;thermal imaging&lt;/strong&gt; for low-light monitoring.
&lt;/li&gt;
&lt;li&gt;Employing &lt;strong&gt;federated learning&lt;/strong&gt; to update models across sites without sharing raw data.
&lt;/li&gt;
&lt;li&gt;Building a &lt;strong&gt;centralized dashboard&lt;/strong&gt; for multi-camera analytics and automated compliance reporting.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;These advancements will move the system toward a comprehensive, scalable &lt;strong&gt;industrial safety management platform&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  CONCLUSION
&lt;/h2&gt;

&lt;p&gt;The implementation of &lt;strong&gt;AI-powered industrial safety monitoring&lt;/strong&gt; demonstrates how deep learning can revolutionize workplace safety. By leveraging YOLOv8 for PPE and behavior detection, industries can automate compliance enforcement, reduce accidents, and foster a proactive safety culture.&lt;/p&gt;

&lt;p&gt;Unlike traditional systems, this solution:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Operates in real time with high accuracy.
&lt;/li&gt;
&lt;li&gt;Works effectively on low-power edge devices.
&lt;/li&gt;
&lt;li&gt;Protects privacy through on-site processing.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This work highlights the intersection of &lt;strong&gt;AI, IoT, and edge computing&lt;/strong&gt; in building a smarter, safer industrial future. As industries adopt such intelligent systems, the vision of zero-accident workplaces becomes increasingly attainable.&lt;/p&gt;




&lt;h2&gt;
  
  
  REFERENCES
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Di, W., Liu, X.F., &amp;amp; Zhou, Z. “MARA-YOLO: A Lightweight Multi-Class PPE Detection Model Based on YOLOv8.” &lt;em&gt;IEEE Access&lt;/em&gt;, vol. 12, 2024.
&lt;/li&gt;
&lt;li&gt;Gallo, S., Palmieri, F., &amp;amp; Castiglione, M. “Smart Edge Computing for Economic and Privacy-Preserving On-Device PPE Detection.” &lt;em&gt;IEEE IoT Journal&lt;/em&gt;, 2022.
&lt;/li&gt;
&lt;li&gt;Lin, C. “YOLOv8n-ASF-DH: Helmet Detection in Cluttered Industrial Environments.” &lt;em&gt;IEEE Access&lt;/em&gt;, 2024.
&lt;/li&gt;
&lt;li&gt;Wang, D., Xu, Y., &amp;amp; Huang, Z. “YOLOv8-MNC: Multi-Head Self-Attention Enhanced YOLO for Smoking Detection.” &lt;em&gt;IEEE Sensors Journal&lt;/em&gt;, 2023.
&lt;/li&gt;
&lt;li&gt;Wang, D., Chen, L., &amp;amp; Xu, Y. “Smoking-YOLOv8: High-Precision Unsafe Behavior Detection in Chemical Plants.” &lt;em&gt;IEEE Transactions on Industrial Informatics&lt;/em&gt;, 2024.&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  &lt;strong&gt;Author Credits&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;This work was completed under the guidance of &lt;strong&gt;Dr. K. Harini&lt;/strong&gt;, Assistant Professor, Coimbatore Institute of Technology, along with the project team: &lt;strong&gt;Adharsh C, Prem kumar S, Santhosh kumar G&lt;/strong&gt;, and &lt;strong&gt;Selvakanthan B&lt;/strong&gt;.&lt;/p&gt;




</description>
      <category>iot</category>
      <category>machinelearning</category>
      <category>edgecomputing</category>
    </item>
  </channel>
</rss>
