SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 01 | Jan 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1520
Face Mask and Social Distance Detection
Ashmitha Shenoy1, K Ashwini A Shenoy2, Shivali3, Yasha Hegde Krishnaraj4,Assistant Prof.
Geethalaxmi5
1,2,3,4UG Students, Department of Information Science and Engineering, Canara Engineering College, Karnataka,
India
5Assistant Prof, Department of ISE, Canara Engineering College, Karnataka, India
---------------------------------------------------------------------***----------------------------------------------------------------------
ABSTRACT -Increasing numbers of cases of COVID-19
provide insight into the pandemic's spread.However,
wearing the face mask in order to prevent the transmission
of droplets in air and maintaining appropriate physical
distance between the people can help to fight this pandemic.
This project is helpful in detecting face masks and social
distancing on a video feed using object detection and Deep
learning. OpenCV, TensorFlow/Keras are the software
requirements used to build a Convolutional Neural Network
(CNN) model to detect face masks. Face masks will be
detected in real-time video and in images. CNN algorithm is
used for object detection, image classification and
recognition and the specialty of this algorithm is its
convolutional ability. YOLO algorithm is popular because of
its speed and accuracy of detection of objects and YOLO
algorithm abbreviated as “You Only Look Once”. This YOLO
algorithm detects the people in frame and check the social
distancing.
Key Words: Face Mask, Social Distance, Convolutional
Neural Network, openCV, Keras, and Tensorflow.
1. INTRODUCTION
Several million people worldwide have been infected with
COVID-19, according to data gathered by the World Health
Organization. With the current situation, as COVID-19 is
increasing along with its different variants, it is necessary
to maintain social distancing and wear masks. It is also
advisable to keep away from social gatherings to prevent
the further spread of corona infection. And yet some
people walk around without wearing a mask. It is quite
tough at times to keep a watch on such activities. Hence
the authorities need advanced technologies to regulate
these kind of activities. The purpose of this project is to
supervise the COVID norms accordingly. This system can
be enforced in entrance of educational institutions,
commercial centres, healthcare centres, metro-stations
and in between the streets.
1.1 LITERATURE SURVEY
Bosheng Qin and Dongxiao Li [1] “Identifying Face-Mask
Wearing condition”. Faces with and without masks can
automatically be distinguished by the model. Test data
were relatively small for SRCNet models. Facemask-
wearing conditions identification could not accommodate
different postures or dynamic environments.
Preeti Nagrath[2] “SSDMNV2: a real-time DNN based face
mask detection system” using SSD and MobilenetV2. Both
during training and development of the image dataset,
SSDMNV2 correctly identified both masks and mask less
faces. It has not been tested in real environments or with
real-time CCTV yet, as the model is trained with artificial
images.
Abdellah Oumina [3] “Control the COVID-19 Pandemic:
Face Mask Detection” using Transfer Learning. Face
features are extracted from images using CNN. A machine
learning classifier SVM and KNN is applied to further
process the extracted feature. When the SVM and
MobileNetV2. More complex algorithms are required to
produce more precise and faster results.
M Loey [4] “Hybrid deep transfer learning model with
machine learning methods for face mask detection”.
Combining SVM, Decision trees, and ensemble methods,
this hybrid model detects facial masks. Real-life video
streaming could not be used for face mask detection in the
study.
Zekun Wang [5] “Fast In-browser Face Mask Detection
with Server less Edge Computing”. A system-agnostic
no-installation face mask detection solution is presented
in this article to alert individuals who are not wearing a
mask or who are wearing it incorrectly/wrongly. There is
some detection ambiguity in the present dataset, since the
no masks and wearing masks are grouped together.
Naser Hossein [6] “Social Distancing using IoT”. PIR
sensors are used to detect targets that are within 1.5
meters of the sensor. After detecting an object that violates
social distancing norms, the system will trigger an audio
alarm. A wearable device is suggested in order to
implement this technique.
Vishwesh M S [7] “Social Distancing and Face Mask
Detection from CCTV Camera”. The system will identify
whether the person is wearing a mask or not and if more
than one person is present it will calculate the distance
between person. This system has some limitations like
hard to detect the face of person or person when they are
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 01 | Jan 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1521
partially visible to camera and it will fail to identify the
object in lowlight.
K.N Baluprithviraj [8] “Artificial Intelligence based smart
door with face mask detection”. The smart device is
designed with a particular component to get the person's
GPS location of the CCTV camera and the concerned
authority can detect the image with meticulous time is
sent through message/SMS to the concerned authority.
The model can recognize the face in any direction. It can
also detect if more than one face is present in the frame.
Saharsh Arya [9] “Study of various Measures to Monitor
Social Distancing using Computer Vision:a Review”.
Various machine learning technique are studied and its
application to social distancing protocols are reviewed in
this paper. According to the review made in this paper
YOLO v3 most popular object detection algorithm. It is
faster and accurate than Single Shot MultiBox (SSD).
“COVID-19 precaution technique by real time Face Mask
Detector by using Machine Learning”[10] The system
divides data into two categories and displays the resulting
data depending on whether the subject is wearing a mask
or not. Using this approach makes it simple to train both
pre-recorded and real-time data with excellent accuracy.
The system could be used only to detect face mask. The
social distance protocol could not be detected.
2. PROPOSED SYSTEM
The aim of this project is to detect face mask and monitor
social distancing between the people. The system ensures
that the COVID safety protocols are followed in an efficient
way.
Figure1: Methodology
2.1 FACE MASK DETECTION
Face Mask Detection system detects whether people are
wearing masks or not using Artificial Networks. The face
mask detection process starts by capturing the images
from the camera. In this system, TensorFlow and OpenCV
programming are used to detect if a face mask can be
detected and to determine if the person is wearing one or
not. If the person wears mask the display is green
bounding box with safe alert whereas if the person is
detected without wearing a mask then red bounding box
appears with an alert message.
Figure 2: Face Mask Detection
2.2 SOCIAL DISTANCE DETECTION
Detecting two or more people in one frame using the
Social Distance detection system is possible. By making
use of Euclidean Distance, system detects whether the
person is following the social distancing or not. If the
physical distance is maintained then it will show in Green
Rectangular-box otherwise the designed system will
indicate the concerned by displaying alert in rectangular
box in red colour.
Figure 3: Social Distance Detection
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 01 | Jan 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1522
3. CONCLUSION
This project has been developed to come up with an
efficient way for detecting facemask and social distancing.
In this pandemic situation when a person does not follow
the COVID-19 safety protocols in workplace, public-
gathering and business establishments. This model will
detect face masks using Keras and Tensor flow. CNN
algorithm helps to adjust the brightness and high
contraction of the images. Using this algorithm, we can
detect mask even if a person wearing glasses, beard faces
etc. YOLO algorithm helps to detect the people in frame
and check the social distancing. Hence this project ensures
that the COVID norms are followed in a more efficient way.
References
[1] “Identifying Face-Mask Wearing condition” using
Image Super-Resolution with Classification Network by
Bosheng Qin and Dongxiao Li (2020)
[2] “SSDMNV2: a real-time DNN based face mask
detection system” using SSD and MobilenetV2by Preeti
Nagrath and co-authors (2020)
[3] “Control the COVID-19 Pandemic: Face Mask
Detection” using Transfer Learning by Abdellah Oumina
and team (2020)
[4] “Hybrid deep transfer learning model with
machine learning methods for face mask detection “by M
Loey (2021)
[5] “Fast In-browser Face Mask Detection with Server
less Edge Computing” by Zekun Wang and co
authors(2021)
[6] “Social Distancing using IoT” approach by Naser
Hossein and team (2021)
[7] “Social Distancing and Face Mask Detection from
CCTV Camera” by Vishwesh M S (2021)
[8] “Artificial Intelligence based smart door with face
mask detection” by K.N Baluprithviraj (2021)
[9] “Study of various Measures to Monitor Social
Distancing using Computer Vision:a Review” by Saharsh
Arya (2021)
[10] “COVID-19 precaution technique by real time Face
Mask Detector by using Machine Learning” (2021)

More Related Content

Similar to Face Mask and Social Distance Detection

Face Mask Detection and Face Recognition Using Machine Learning
Face Mask Detection and Face Recognition Using Machine LearningFace Mask Detection and Face Recognition Using Machine Learning
Face Mask Detection and Face Recognition Using Machine LearningIRJET Journal
 
Face Mask Detection using CNN and OpenCV
Face Mask Detection using CNN and OpenCVFace Mask Detection using CNN and OpenCV
Face Mask Detection using CNN and OpenCVIRJET Journal
 
Social Distance Detection System
Social Distance Detection SystemSocial Distance Detection System
Social Distance Detection SystemIRJET Journal
 
FACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUE
FACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUEFACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUE
FACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUEIRJET Journal
 
AUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTION
AUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTIONAUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTION
AUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTIONIRJET Journal
 
Intelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIntelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIRJET Journal
 
A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...
A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...
A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...IRJET Journal
 
Social Distance Monitoring and Mask Detection Using Deep Learning Techniques
Social Distance Monitoring and Mask Detection Using Deep Learning TechniquesSocial Distance Monitoring and Mask Detection Using Deep Learning Techniques
Social Distance Monitoring and Mask Detection Using Deep Learning TechniquesIRJET Journal
 
AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...
AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...
AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...IRJET Journal
 
Face Mask Detection System Using Artificial Intelligence
Face Mask Detection System Using Artificial IntelligenceFace Mask Detection System Using Artificial Intelligence
Face Mask Detection System Using Artificial IntelligenceIRJET Journal
 
NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...
NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...
NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...IRJET Journal
 
Real Time Social Distance Detector using Deep learning
Real Time Social Distance Detector using Deep learningReal Time Social Distance Detector using Deep learning
Real Time Social Distance Detector using Deep learningIRJET Journal
 
Social distance and face mask detector system exploiting transfer learning
Social distance and face mask detector system exploiting  transfer learningSocial distance and face mask detector system exploiting  transfer learning
Social distance and face mask detector system exploiting transfer learningIJECEIAES
 
Covid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural NetworksCovid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural NetworksIRJET Journal
 
COVID-19 FACE MASK DETECTION
COVID-19 FACE MASK DETECTIONCOVID-19 FACE MASK DETECTION
COVID-19 FACE MASK DETECTIONIRJET Journal
 
Facemask_project (1).pptx
Facemask_project (1).pptxFacemask_project (1).pptx
Facemask_project (1).pptxJosh Josh
 
Face mask detection using deep learning on NVIDIA Jetson Nano
Face mask detection using deep learning on NVIDIA Jetson  NanoFace mask detection using deep learning on NVIDIA Jetson  Nano
Face mask detection using deep learning on NVIDIA Jetson NanoIJECEIAES
 
Multiple face mask wearer detection based on YOLOv3 approach
Multiple face mask wearer detection based on YOLOv3 approachMultiple face mask wearer detection based on YOLOv3 approach
Multiple face mask wearer detection based on YOLOv3 approachIAESIJAI
 
mnask detetor ppt using deep learning.pptx
mnask detetor ppt using  deep learning.pptxmnask detetor ppt using  deep learning.pptx
mnask detetor ppt using deep learning.pptxJaSa18
 

Similar to Face Mask and Social Distance Detection (20)

Face Mask Detection and Face Recognition Using Machine Learning
Face Mask Detection and Face Recognition Using Machine LearningFace Mask Detection and Face Recognition Using Machine Learning
Face Mask Detection and Face Recognition Using Machine Learning
 
Face Mask Detection using CNN and OpenCV
Face Mask Detection using CNN and OpenCVFace Mask Detection using CNN and OpenCV
Face Mask Detection using CNN and OpenCV
 
Social Distance Detection System
Social Distance Detection SystemSocial Distance Detection System
Social Distance Detection System
 
FACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUE
FACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUEFACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUE
FACEMASK AND PHYSICAL DISTANCING DETECTION USING TRANSFER LEARNING TECHNIQUE
 
AUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTION
AUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTIONAUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTION
AUTOMATIC GATE BASED ON FACEMASK & TEMPERATURE DETECTION
 
Intelligent System For Face Mask Detection
Intelligent System For Face Mask DetectionIntelligent System For Face Mask Detection
Intelligent System For Face Mask Detection
 
A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...
A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...
A Social Distancing Monitoring System Using OpenCV to Ensure Social Distancin...
 
Social Distance Monitoring and Mask Detection Using Deep Learning Techniques
Social Distance Monitoring and Mask Detection Using Deep Learning TechniquesSocial Distance Monitoring and Mask Detection Using Deep Learning Techniques
Social Distance Monitoring and Mask Detection Using Deep Learning Techniques
 
AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...
AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...
AI-based Mechanism to Authorise Beneficiaries at Covid Vaccination Camps usin...
 
Face Mask Detection System Using Artificial Intelligence
Face Mask Detection System Using Artificial IntelligenceFace Mask Detection System Using Artificial Intelligence
Face Mask Detection System Using Artificial Intelligence
 
NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...
NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...
NEW CORONA VIRUS DISEASE 2022: SOCIAL DISTANCING IS AN EFFECTIVE MEASURE (COV...
 
Real Time Social Distance Detector using Deep learning
Real Time Social Distance Detector using Deep learningReal Time Social Distance Detector using Deep learning
Real Time Social Distance Detector using Deep learning
 
Social distance and face mask detector system exploiting transfer learning
Social distance and face mask detector system exploiting  transfer learningSocial distance and face mask detector system exploiting  transfer learning
Social distance and face mask detector system exploiting transfer learning
 
Covid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural NetworksCovid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural Networks
 
COVID-19 FACE MASK DETECTION
COVID-19 FACE MASK DETECTIONCOVID-19 FACE MASK DETECTION
COVID-19 FACE MASK DETECTION
 
Facemask_project (1).pptx
Facemask_project (1).pptxFacemask_project (1).pptx
Facemask_project (1).pptx
 
Face mask detection using deep learning on NVIDIA Jetson Nano
Face mask detection using deep learning on NVIDIA Jetson  NanoFace mask detection using deep learning on NVIDIA Jetson  Nano
Face mask detection using deep learning on NVIDIA Jetson Nano
 
Multiple face mask wearer detection based on YOLOv3 approach
Multiple face mask wearer detection based on YOLOv3 approachMultiple face mask wearer detection based on YOLOv3 approach
Multiple face mask wearer detection based on YOLOv3 approach
 
mnask detetor ppt using deep learning.pptx
mnask detetor ppt using  deep learning.pptxmnask detetor ppt using  deep learning.pptx
mnask detetor ppt using deep learning.pptx
 
7.Mask detection.pdf
7.Mask detection.pdf7.Mask detection.pdf
7.Mask detection.pdf
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 

Recently uploaded (20)

Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 

Face Mask and Social Distance Detection

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 01 | Jan 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1520 Face Mask and Social Distance Detection Ashmitha Shenoy1, K Ashwini A Shenoy2, Shivali3, Yasha Hegde Krishnaraj4,Assistant Prof. Geethalaxmi5 1,2,3,4UG Students, Department of Information Science and Engineering, Canara Engineering College, Karnataka, India 5Assistant Prof, Department of ISE, Canara Engineering College, Karnataka, India ---------------------------------------------------------------------***---------------------------------------------------------------------- ABSTRACT -Increasing numbers of cases of COVID-19 provide insight into the pandemic's spread.However, wearing the face mask in order to prevent the transmission of droplets in air and maintaining appropriate physical distance between the people can help to fight this pandemic. This project is helpful in detecting face masks and social distancing on a video feed using object detection and Deep learning. OpenCV, TensorFlow/Keras are the software requirements used to build a Convolutional Neural Network (CNN) model to detect face masks. Face masks will be detected in real-time video and in images. CNN algorithm is used for object detection, image classification and recognition and the specialty of this algorithm is its convolutional ability. YOLO algorithm is popular because of its speed and accuracy of detection of objects and YOLO algorithm abbreviated as “You Only Look Once”. This YOLO algorithm detects the people in frame and check the social distancing. Key Words: Face Mask, Social Distance, Convolutional Neural Network, openCV, Keras, and Tensorflow. 1. INTRODUCTION Several million people worldwide have been infected with COVID-19, according to data gathered by the World Health Organization. With the current situation, as COVID-19 is increasing along with its different variants, it is necessary to maintain social distancing and wear masks. It is also advisable to keep away from social gatherings to prevent the further spread of corona infection. And yet some people walk around without wearing a mask. It is quite tough at times to keep a watch on such activities. Hence the authorities need advanced technologies to regulate these kind of activities. The purpose of this project is to supervise the COVID norms accordingly. This system can be enforced in entrance of educational institutions, commercial centres, healthcare centres, metro-stations and in between the streets. 1.1 LITERATURE SURVEY Bosheng Qin and Dongxiao Li [1] “Identifying Face-Mask Wearing condition”. Faces with and without masks can automatically be distinguished by the model. Test data were relatively small for SRCNet models. Facemask- wearing conditions identification could not accommodate different postures or dynamic environments. Preeti Nagrath[2] “SSDMNV2: a real-time DNN based face mask detection system” using SSD and MobilenetV2. Both during training and development of the image dataset, SSDMNV2 correctly identified both masks and mask less faces. It has not been tested in real environments or with real-time CCTV yet, as the model is trained with artificial images. Abdellah Oumina [3] “Control the COVID-19 Pandemic: Face Mask Detection” using Transfer Learning. Face features are extracted from images using CNN. A machine learning classifier SVM and KNN is applied to further process the extracted feature. When the SVM and MobileNetV2. More complex algorithms are required to produce more precise and faster results. M Loey [4] “Hybrid deep transfer learning model with machine learning methods for face mask detection”. Combining SVM, Decision trees, and ensemble methods, this hybrid model detects facial masks. Real-life video streaming could not be used for face mask detection in the study. Zekun Wang [5] “Fast In-browser Face Mask Detection with Server less Edge Computing”. A system-agnostic no-installation face mask detection solution is presented in this article to alert individuals who are not wearing a mask or who are wearing it incorrectly/wrongly. There is some detection ambiguity in the present dataset, since the no masks and wearing masks are grouped together. Naser Hossein [6] “Social Distancing using IoT”. PIR sensors are used to detect targets that are within 1.5 meters of the sensor. After detecting an object that violates social distancing norms, the system will trigger an audio alarm. A wearable device is suggested in order to implement this technique. Vishwesh M S [7] “Social Distancing and Face Mask Detection from CCTV Camera”. The system will identify whether the person is wearing a mask or not and if more than one person is present it will calculate the distance between person. This system has some limitations like hard to detect the face of person or person when they are
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 01 | Jan 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1521 partially visible to camera and it will fail to identify the object in lowlight. K.N Baluprithviraj [8] “Artificial Intelligence based smart door with face mask detection”. The smart device is designed with a particular component to get the person's GPS location of the CCTV camera and the concerned authority can detect the image with meticulous time is sent through message/SMS to the concerned authority. The model can recognize the face in any direction. It can also detect if more than one face is present in the frame. Saharsh Arya [9] “Study of various Measures to Monitor Social Distancing using Computer Vision:a Review”. Various machine learning technique are studied and its application to social distancing protocols are reviewed in this paper. According to the review made in this paper YOLO v3 most popular object detection algorithm. It is faster and accurate than Single Shot MultiBox (SSD). “COVID-19 precaution technique by real time Face Mask Detector by using Machine Learning”[10] The system divides data into two categories and displays the resulting data depending on whether the subject is wearing a mask or not. Using this approach makes it simple to train both pre-recorded and real-time data with excellent accuracy. The system could be used only to detect face mask. The social distance protocol could not be detected. 2. PROPOSED SYSTEM The aim of this project is to detect face mask and monitor social distancing between the people. The system ensures that the COVID safety protocols are followed in an efficient way. Figure1: Methodology 2.1 FACE MASK DETECTION Face Mask Detection system detects whether people are wearing masks or not using Artificial Networks. The face mask detection process starts by capturing the images from the camera. In this system, TensorFlow and OpenCV programming are used to detect if a face mask can be detected and to determine if the person is wearing one or not. If the person wears mask the display is green bounding box with safe alert whereas if the person is detected without wearing a mask then red bounding box appears with an alert message. Figure 2: Face Mask Detection 2.2 SOCIAL DISTANCE DETECTION Detecting two or more people in one frame using the Social Distance detection system is possible. By making use of Euclidean Distance, system detects whether the person is following the social distancing or not. If the physical distance is maintained then it will show in Green Rectangular-box otherwise the designed system will indicate the concerned by displaying alert in rectangular box in red colour. Figure 3: Social Distance Detection
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 01 | Jan 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1522 3. CONCLUSION This project has been developed to come up with an efficient way for detecting facemask and social distancing. In this pandemic situation when a person does not follow the COVID-19 safety protocols in workplace, public- gathering and business establishments. This model will detect face masks using Keras and Tensor flow. CNN algorithm helps to adjust the brightness and high contraction of the images. Using this algorithm, we can detect mask even if a person wearing glasses, beard faces etc. YOLO algorithm helps to detect the people in frame and check the social distancing. Hence this project ensures that the COVID norms are followed in a more efficient way. References [1] “Identifying Face-Mask Wearing condition” using Image Super-Resolution with Classification Network by Bosheng Qin and Dongxiao Li (2020) [2] “SSDMNV2: a real-time DNN based face mask detection system” using SSD and MobilenetV2by Preeti Nagrath and co-authors (2020) [3] “Control the COVID-19 Pandemic: Face Mask Detection” using Transfer Learning by Abdellah Oumina and team (2020) [4] “Hybrid deep transfer learning model with machine learning methods for face mask detection “by M Loey (2021) [5] “Fast In-browser Face Mask Detection with Server less Edge Computing” by Zekun Wang and co authors(2021) [6] “Social Distancing using IoT” approach by Naser Hossein and team (2021) [7] “Social Distancing and Face Mask Detection from CCTV Camera” by Vishwesh M S (2021) [8] “Artificial Intelligence based smart door with face mask detection” by K.N Baluprithviraj (2021) [9] “Study of various Measures to Monitor Social Distancing using Computer Vision:a Review” by Saharsh Arya (2021) [10] “COVID-19 precaution technique by real time Face Mask Detector by using Machine Learning” (2021)