Automation Finalpresentation[1]
Automation Finalpresentation[1]
Outline
• Problem statement
• Introduction
• Overview of the project
• Literature survey
• Additional information
• Plan schedule
• Our budget
• Methodology and design
• Methodology point
• Proposed design
• Research methodology
• Implementation of hardware
• Conclusion
• References
Doctor's Health and Safety Monitoring System 2
Spring 2023
Problem Statement
Fatigue, stress, illness, or substance abuse can hinder a doctor's ability to perform
surgeries safely, compromising patient safety and infection control in hospitals.
Effective solutions are needed to support doctors' well-being, prevent mistakes, and
improve patient outcomes.
Our technology used:
• 1. Camera V2 module - utilizes face detection and mask recognition techniques to analyze video frames and detect
whether a doctor is wearing a mask or not.
• 2. Heart Oxygen Sensor (MAX30100) - measures the doctor's heart rate and oxygen saturation levels.
• 3. Body Temperature Sensor (MIX90614) - captures the doctor's body temperature with a high degree of accuracy.
• 4. Signal filtering and processing techniques - used to process sensor readings from the Heart Oxygen and Body
Temperature Sensors to ensure reliable and accurate measurements.
• 5. Diverse dataset - used to fine-tune the mask detection algorithm and minimize false positives and false negatives.
Literature Survey
[1],[2] G Abdullah S. AL-Malaise AL-Ghamdi, Sultanah M. Alshammari explore the use of IoT and
smart technology to combat the spread of COVID-19. It discusses the limitations of using
infrared thermometers for mass screening and the potential benefits of using smart masks with
sensors. Also M. Lazaro, A. Lazaro proposed a novel approach of using smart masks to automate
screening and enhance efficiency by measuring temperature and breathing rate of wearers. The
use of face mask sensors for detecting mask type and fit has some drawbacks. The sensors may
have limited accuracy and can malfunction in certain environmental conditions or lighting.
Moreover, the adoption of these sensors may face challenges due to personal preferences or
privacy concerns of individuals. Therefore,
In our project we focused to get
the best accuracy of the sensors by recalibrating the sensors every
time the project operates.
Literature Survey
[3],[4] Islam, M. M., Rahaman released a paper in Development of Smart Healthcare Monitoring
System in IoT Environment. This is a famous research paper that has been posted in the national
health library of medicine this research paper dealt with the problem perfectly as there are five
sensors used which are heartbeat sensor, body temperature sensor, room temperature sensor,
carbon monoxide and carbon dioxide sensor . The idea of this system is to ensure that all of the read
variables are in its normal condition, and this is great but, in our project, we considered
another dimension which is the safety precautions so, we added a sensor (like the face
id check) that checks if the doctor is wearing a face mask or not . Abdulmalek S, Nasir A,
Jabbar WA also released a paper about IoT-Based Healthcare-Monitoring System towards Improving
Quality of Life This research paper is mainly discussing an IOT based project that helps the doctors to
deal with patients semi remotely as there is a software that analyses the read results by the sensors
of the patients and gives a report of the case to the doctor, many specified sensors are used in this
project. This project consists of a strong base as it saves time of both doctors and
patients and also allows anyone to get a fast checkup on himself but the problem with
this paper is there isn’t any accuracy details of any of the used devices so applying this
project is considered a kind of risk so according to this point we made sure that our
research paper contains all the names of the used devises in addition to the accuracy
percentage of each device
Literature Survey
[5],[6],[7] Ademola Philip Abidoye have reached Using Wearable Sensors for Remote Healthcare
Monitoring System Sensor nodes can be strategically placed on the human body create a cluster that is
called wireless body area network (WBAN) that can be used to collect patient’s vital signs . But in our
project, we will monitor all of the health status without using any attached sensors to the
human body. Yara Ahmed, Racha Ramadan released a paper in Equity of health-care financing: a
progressivity analysis for Egypt. The Egyptian health-care system is still characterized by problems of
quality, efficiency and equity (WHO, 2014). This signals the need for immediate pursuit of health-care
financing reform because many constraints to the proper functioning of Egypt’s health-care system are
finance-related. and this what our project aims to do which is to increase the health-care
quality in Egypt. Garba Iliyasu, Farouq Muhammad also released a paper about Knowledge and
practices of infection control among healthcare workers the poor knowledge on the risk of transmission
of bloodborne pathogens (HIV, HBV, HCV) suggest most of the respondents underestimate the risk of
transmission and this may put HCW at risk of being infected with these pathogens following exposure.
This may explain the poor compliance with the use of simple personal protective equipment such as
gowns, caps and mask and goggles identified in this study, as most of the respondent would have
underestimated the risk associated with invasive procedures. due to the high rate of infection in
this project we aim to make sure that the doctors follow all safety ore cation before seeing
the patient.
Literature Survey
[8],[9]Z. Al Maskari, A. Al Blushi have found that Characteristics of healthcare workers infected
with COVID-19 This study describes the characteristics of HCWs who tested positive for COVID-
19 at Royal Hospital, Muscat, Oman, which is the main hospital providing care for patients with
moderate to severe COVID-19, Healthcare workers (HCWs) are at risk of acquiring COVID-19 in
the workplace. Several reports have described the reasons leading to COVID-19 acquisition by
HCWs within healthcare settings. and that is why we finds it important to put mask
detection in the project to avoid this harm. Sandeep Sharma, Brant B. Hafen have
reached that Due to the noninvasive nature and relative importance of pulse oximetry
readings, there are very few situations that do not indicate its use. Pulse oximetry can provide
a rapid tool to assess oxygenation accurately. It is particularly useful in emergencies for this
reason. Cyanosis may not develop until oxygen saturation reaches about 67%. As such, pulse
oximetry is extremely useful because the signs and symptoms of hypoxemia may not be visible
on physical examination. And that’s why we added this sensor in order to avoid any
breathing problem.
• Research Methodology:
• - Conduct literature review
• - Identify system requirements
• - Design system architecture
• - Develop working prototype
• - Test and validate system
• - Conduct user evaluation
• - Optimize system based on feedback
• - Deploy system in real-world hospital setting
Implementation
eart Oxygen Sensor (MAX30100) code:
import time
import max30100
mx30 = max30100.MAX30100()
mx30.enable_spo2()
while 1:
mx30.read_sensor()
mx30.ir, mx30.red
hb = int(mx30.ir / 100)
spo2 = int(mx30.red / 100)
if mx30.ir != mx30.buffer_ir :
print("Pulse:",hb);
if mx30.red != mx30.buffer_red:
print("SPO2:",spo2); time.sleep(2)
Doctor's Health and Safety Monitoring System Spring 2023 13
body temperature sensor (mix90614)
code:
import board
import busio as io
import adafruit_mlx90614
from time import sleepi2c = io.I2C(board.SCL, board.SDA, frequency=100000)
mlx = adafruit_mlx90614.MLX90614(i2c)
ambientTemp = "{:.2f}".format(mlx.ambient_temperature)
targetTemp = "{:.2f}".format(mlx.object_temperature)
sleep(1);
print("Ambient Temperature:", ambientTemp, "°C")
print("Target Temperature:", targetTemp,"°C")
Servo motor code to open the door:
from gpiozero import AngularServo
from time import sleep
servo = AngularServo(18, min_pulse_width=0.0006,
max_pulse_width=0.0023)
while (True):
servo.angle = 90
sleep(2)
servo.angle = 0
sleep(2)
servo.angle = -90
sleep(2)
Spring 2022
Developed Product
Maximum FIVE slides presenting the developed product
Conclusion
The whole idea of the project:
- Developed an integrated tool for measuring vital signs and detecting face masks
- Achieved high accuracy in measurements and detection
- Integration of multiple sensors into a single tool saves time and reduces errors
- Face mask detection feature helps prevent spread of infections
- Significant step towards improving healthcare delivery and patient and doctor safety
- Prototype development in progress
- Develops an integrated measurement tool to monitor a doctor's vital signs and detect face masks
- Includes sensors for oxygen saturation, heart rate, body temperature, and face masks
- Objective is to ensure only healthy doctors attend to patients
- Prevents monitor from proceeding if abnormal data detected
- Involves a literature review, modelling and simulation, prototype development, testing and validation of models,
and report writing
- Aims to improve healthcare delivery and patient safety in hospitals and other healthcare settings
Spring 2023
References
1] G Abdullah S. AL-Malaise AL-Ghamdi, Sultanah M. Alshammari, and Mahmoud Ragab are affiliated with the Information
Systems Department and Center of Excellence in Smart Environment Research at King Abdulaziz University in Jeddah,
Saudi Arabia
[2] M. Lazaro, A. Lazaro, R. Villarino, and D. Girbau. The article was edited by Amir Rahmani
[3] Islam, M. M., Rahaman, A., & Islam, M. R. (2020). Development of Smart Healthcare Monitoring System in IoT
Environment. SN computer science, 1(3), 185.
[4] Abdulmalek S, Nasir A, Jabbar WA, Almuhaya MAM, Bairagi AK, Khan MA-M, Kee S-H. IoT-Based Healthcare-Monitoring
System towards Improving Quality of Life: A Review. Healthcare. 2022; 10(10):1993.
[5] Ademola Philip Abidoye1,2, Nureni Ayofe Azeez1,3, Ademola Olusola Adesina1,2, Kehinde K. Agbele1,2, Henry O.
Nyongesa1,2 1 Soft Computing and Natural Language Research Group, Bellville, South Africa 2 Department of Computer
Science, Faculty of Natural Science, University of the Western Cape, Bellville, South Africa
[6] Yara Ahmed, Racha Ramadan and Mohamed Fathi Sakr Department of Economics, Faculty of Economics and Political
Science, Cairo University, Giza, Egypt
[7] Garba Iliyasu1, Farouq Muhammad Dayyab2, Zaiyad Garba Habib2, Abdulwasiu Bolaji Tiamiyu2, Salisu Abubakar3,
Mohammad Sani Mijinyawa1, Abdulrazaq Garba Habib11 Department of Medicine, College of Health Sciences, Bayero
University Kano, Kano, Nigeria 2 Department of Medicine, Aminu Kano Teaching Hospital, Kano, Nigeria 3 Department of
Nursing, Infection Control Unit, Aminu Kano Teaching Hospital, Kano, Nigeria
[8] Z. Al Maskari, A. Al Blushi, F. Khamis et al. International Journal of Infectious Diseases 102 (2021) 32–36
[9] Sandeep Sharma, Brant B. Hafen,StatPearls Publishing, Treasure Island (FL)25 Sep 2018
Title of the Project 20