Next Article in Journal
A Low-Latency Fair-Arbiter Architecture for Network-on-Chip Switches
Previous Article in Journal
Machine Learning Based Signaling DDoS Detection System for 5G Stand Alone Core Network
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Prediction of Health Problems Using Deep Learning Images and Bio-Signals

1
Center for General Education, Wonkwang University, Iksan 54538, Jeonbuk, Republic of Korea
2
Department of Information and Communication Engineering, Sungkyul University, 53 Sungkyul University-Ro, Manan-gu, Anyang-si 14097, Gyeonggi-do, Republic of Korea
3
Department of Computer Software Engineering, Wonkwang University, Iksan 54538, Jeonbuk, Republic of Korea
*
Author to whom correspondence should be addressed.
Appl. Sci. 2022, 12(23), 12457; https://doi.org/10.3390/app122312457
Submission received: 17 August 2022 / Revised: 30 November 2022 / Accepted: 2 December 2022 / Published: 5 December 2022
(This article belongs to the Section Computing and Artificial Intelligence)

Abstract

:
We propose a study to predict health abnormalities by analyzing body temperature and the heart rate variability parameters of pulse waves. The research method firstly selects fever by applying a deep learning model to thermal images, and secondly, extracts heart rate variability from pulse waves through a photo-plethysmograph sensor. It analyzes the relevance of body temperature and health status by dividing the presence or absence of fever cases and comparing parameters related to autonomic nerves and stress cases. As a result of the experiment, the control group with normal body temperature had a mean pulse variability of 37.65, SDNN of 64.83, and RMSSD of 42.24. In contrast, in the experimental group, which consisted of individuals with fever, the average pulse variability was 31.91, the SDNN was 42.34, and the RMSSD was 26.80. Our research expects to be applicable to a thermal imaging system that can measure body temperature and bio-signals together and show the predicted results of health status for fever cases.

1. Introduction

When it comes to infection rates and number of deaths, COVID-19 has shown unprecedented records around the globe, and it is causing tremendous social and economic losses. At present, major countries around the world are establishing response systems in various areas in order to prevent this infectious disease from spreading further. Major characteristics of highly contagious viruses (e.g., influenza, MERS, COVID-19, etc.) are fever, coughing, and helplessness. When the condition is fever, the virus causes headache, muscular pain, vomiting, diarrhea, etc. [1].
One basic method to identify individuals suspected of infection and to prevent a secondary infection is to check fever by means of non-contact measuring methods such as thermal imaging camera and infrared thermometer. Non-contact thermometers recognize the heat generated from a human body by means of a sensor and convert it into numerical values. This type of means are widely used since they are less expensive. However, it is difficult to measure many individuals at once in a highly condensed space, since such methods should be manipulated manually in a close distance from the subject. Recently, as demands for thermal imaging cameras increased due to COVID-19, systems have been developed to detect multiple individuals in one screen frame, measure individuals’ body temperature, and issue alarms according to the designated critical values. When body temperature is detected by means of a thermal imaging camera, one way to increase the accuracy is to detect the human face in the image, map that area in the thermal image, and derive valid numerical values in the corresponding area [2,3,4].
Face recognition technology has been a major research subject in the area of image processing for the past decades, and it is widely used to identify and verify humans. The typical method of face detection is to find important features of a human face (e.g., eyes, nose, mouth, etc.) from input images and to normalize face images of a certain size in reference to such features. Based on Viola and Jones’ algorithm released in the early 2000s, the Boosted Haar Feature and Cascade algorithm was suggested in a relevant major study to extract features and detect a human face [5]. Thereafter, a convolutional neural network (CNN) and regions with a convolutional neural network (R-CNN) were proposed, which contributed significantly to the area of object detection and recognition in the form of deep learning [6,7,8]. Major examples of deep learning models are faster R-CNNs [9], upgrading the previous version of R-CNNs in terms of speed and performance, which extract a target area and classify objects from that area and you only look once (YOLO) [10], which distinguishes objects from the entire image at once. There has been continued research on face detection by means of such deep learning models for security and authentication [11,12], and recently, as the number of people wearing a mask to prevent droplet infection increases, some studies suggest methods to detect faces wearing a mask [13].
Measuring the body temperature to diagnose fever is the most basic and fundamental practice in the medical field to check the human body’s health condition quickly. Fever is a normal reaction to a human body’s immuno-stimulant, and it is closely related to the autonomous nervous system. Heart rate variability (HRV) is a parameter to digitize and analyze such autonomous nerve reactions. It is referred to as an indicator to analyze fine changes in heart beats in a scientific and quantitative manner and to determine conditions of the autonomous nervous system such as antagonism, stress, blood vessel condition, etc. HRV can be measured based on pulse waves or electrocardiogram measurements by means of photo-plethysmograph (PPG), which is a non-invasive sensing method [14,15,16]. Various methods are currently employed to determine the health status of various organisms. Examples include research on the causes of adverse health effects on organisms such as humans, plants, animals, bio-signal detection research using biosensors and machine learning, and research to identify abnormal signs using thermal image data [17,18,19,20,21,22,23,24,25]. There are, however, insufficient studies on the relationship between HRV and stress analysis for fever symptoms and on the detection of specific objects using deep learning for thermal imaging.
This study suggests a method to predict and identify individuals with fever by applying a convolutional neural network model specially designed for image detection to thermal images. Bio-signals of selected subjects are measured by means of a PPG sensor, and the correlation between the derived HRV parameter and body temperature is examined to predict any possible abnormal symptoms. Section 2 introduces prior studies related to our research topic. Section 3 discusses, first of all, the way to identify individuals with fever by applying deep learning to thermal imaging images, and then, secondly, discusses the types of parameters that can be derived to measure bio-signals and analyze health conditions by means of a PPG sensor. Section 4 presents the findings of the analysis on the correlation based on the body temperature and HRV experiment results. Finally, Section 5 presents the conclusions and future issues.

2. Related Work

In this section, we introduce research on face detection using deep learning and similar works on health status prediction using biometric signals. The method for detecting faces has continued to evolve from traditional object detection techniques (non-neural-based methods) to neural-based methods research. Face recognition is an access control system for security and is mainly used for recognizing and contrasting human faces in general images. However, in recent years, with the advent of a virus with a high mortality rate requires the preliminary control of building visitors, the frequency of facial recognition studies in thermal imaging cameras has increased.

2.1. Deep-Learning-Based Object Detection

Object detection models based on neural networks are largely divided into two-stage detector and one-stage detector. A two-stage detector is a structure in which the region proposal and classification stage are separated and operated sequentially, and R-CNN-based deep learning models are applicable. The R-CNN model is a model that separates region proposal, CNN, classifier, and regression and has a disadvantage in that the object detection performance is excellent, but the learning speed is slow. To solve this problem, fast R-CNN, which improves learning speed and performance by learning CNN, classification, and regression in a network by applying an end-to-end technique to a model, was proposed. However, for R-CNN and fast R-CNN, the process of generating a candidate region was performed independently of CNN, leaving inefficient problems in terms of learning speed. In order to improve this, the faster R-CNN to which the region proposal network (RPN) was applied was proposed, and the computational performance of the R-CNN model was enhanced. A one-stage detector is a structure in which regional proposals and classifications are made simultaneously, and it can solve both classification and localization problems at the same time. Representative deep learning models using one-stage detectors include the single-shot multibox detector (SSD) [26] and YOLO. YOLO is a model that divides the input image into a grid and predicts the bounding box and class probability for each cell. It is superior to R-CNN in terms of learning speed. However, if an object smaller than the grid is detected, there is a problem that the accuracy is lowered, so the version has been continuously upgraded. SSD is a model proposed to solve using multiscale feature maps and anchors [27]. In summary, the two-stage detectors are suitable for tasks that require a slow but high detection accuracy because the region suggestion and classification proceed sequentially. The one-stage detectors perform two steps at a time, so they learn faster but are used for tasks that require real-time detection due to their low accuracy.

2.2. Face Detection

The basic method for detecting a human face is to vectorize key features such as the eyes, nose, and mouth and detect or recognize an object by discriminating the distance between the feature points [28]. Recently, a recognition system for the purpose of controlling the access of non-mask users was required, so it was necessary to be able to inform whether or not a mask was worn. In addition, even when wearing a mask, it should be possible to expand to a system that can measure the temperature of an object using a thermal imaging camera. For this reason, it is necessary to accurately recognize the face area of the mask wearer. For example, there is a study that predicts the face area based on the human eye and extracts the mask wearing area [29] or predicts whether the mask is worn by applying various deep learning algorithms [30,31]. A representative study has recognized a face with an RGB camera, extracted the region of interest from the thermal imaging camera image, and then combined it to detect whether there is heat in the face region [32,33,34].

2.3. Prediction of Health Status Using Bio-Signals

Research on health condition prediction using biometric signals has been studied for a long time as precedent works for wearable devices and telemedicine services. Body temperature and pulse waves are bio-signals that can be used to quickly and easily check health status in a non-invasive measurement method. Body temperature is the easiest way to check your health because the immune system inside the body works to generate heat when you catch a cold or respiratory disease. Pulse wave is a waveform that records the beats of the chest wall and large blood vessels according to the beat of the heart, and heart rate (HR) and HRV can be obtained by analyzing the components of the waveform. HR and HRV are closely related to stress and affect health status [35,36]. However, since it is difficult to determine the state of health only by body temperature, it is determined by measuring other bio-signals together. In the past, research on systems that measure and integrate pulse waves, electrocardiograms, and blood pressure was the main focus. However, recently, as body temperature measurement has become the main focus, methods to measure body temperature, heart rate, and respiration using RGB-thermal image sensors are also being studied [37,38].
Our research combines individually separated methods into one to measure multiple bio-signals and predict health abnormalities through comparison.

3. Materials and Methods

The method proposed in this study consists of 3 parts, as shown in Figure 1: (1) detection and alarming of individuals with fever cases by means of deep learning from thermal images; (2) bio-signal measurement by means of a PPG sensor; and (3) prediction of abnormal symptoms of the health condition by means of deep learning and bio-signals.
In order to predict abnormal symptoms of the subject’s health condition by means of deep learning and bio-signals, first of all, the faster R-CNN model was applied to thermal imaging images, and individuals with fever were detected. The faster R-CNN model was optimized for learning and fever case detection in reference to datasets collected through a thermal camera. For fever cases selected through the deep learning model, bio-signals were measured by means of a PPG sensor. Based on the bio-signal measurement data, the correlation parameters of the HRV, autonomous nervous system, and stress were derived. Finally, the correlation between HRV parameters and the subjects was analyzed to determine any symptoms of health problems.

3.1. Object Detection in Thermal Image

3.1.1. Network Architecture

Faster R-CNN is an upgrade of the previous version of CNN. After the process shown in Figure 2, not only the object class but also the object location, area, and width in the given image are represented with a bounding box. The convolutional network part of faster R-CNN consists of the convolution layer and pooling layer, just like CNN. The feature map derived from this process is connected to the RPN and fully connected layer. Convolutional operation blurs images or highlights a certain corner or line, while pooling operation secures consistency of the specific location of a certain feature in the image. The feature map is generated by extracting image features after the alternate pass of these two layers. The RPN applies the anchor box to the feature map in a sliding window form. Anchor boxes may be varied in size and proportion. They suggest various areas where subjects to be detected may be located. In the suggested areas, the intersection over union (IOU) is calculated and a certain level of measurement is set as the condition for the final detection area. The classification and bounding box are then presented [9].

3.1.2. Learning

In order to detect individuals with fever from thermal images, it is required to secure a deep learning model that was trained in advance by means of datasets of individuals with fever. First of all, in order to acquire datasets, 500 jpg files of 768 × 576 pixel (BlueRed color mode) were collected by means of IMI TECH Co., Ltd’s (Anyang, Republic of Korea), the intellectual thermal image-based temperature sensing system (IMT-831GD). Collected thermal images were classified to individuals with fever and in normal conditions as shown in Figure 3. Figure 3a shows an image sample of the fever group, while Figure 3b shows a sample of the normal group. Collected thermal images went through the steps of annotation and labeling to be used as datasets for training of the deep learning model. Thermal images indicated the skin temperature in color. Acquired images indicated fine heat distribution on the face with color gradation. Accordingly, images were classified in consideration of heat distribution to high temperature and normal temperature. Datasets generated from this annotation process were used to train the faster R-CNN model. In this way, a new weight model for fever detection was acquired.

3.2. Prediction System of Health Status

3.2.1. Pulse Wave and HRV

To determine health conditions, methods to measure and analyze bio-signals are commonly used. Bio-signals are signals of biological phenomenon in a human body measured in an invasive or non-invasive way by means of various types of sensors. Since biological tissues generating such signals are combined organically, they are quite complicated and sensitive to external environments. Thus, they may reflect abnormal conditions when measured. Among biological signals, signals that best reflect the biological state of a body are temperature, pulse waves, and electrocardiogram. Among these, pulse waves and electrocardiograms are used to measure HRV, which is information relevant to heart beats. HRV-based methods are designed to measure the state of a body simply in a non-invasive manner and provide scientific and reliable biological information [15].
An electrocardiogram is used to measure the electric activity of a heart in a non-invasive manner by attaching 2 or more electrodes on the arms, legs, and chest. While it is possible to obtain various types of cardiac biological information on heart beats, irregular pulses, myocardial infarction, etc., it is difficult to measure in a crowded public place with many people [16]. Thus, pulse wave measuring methods to measure HRV on the basis of optical characteristics of skin are commonly used instead. PPG methods to measure pulse waves by means of a light source are used to extract information on heart beats by using an optimal detector and infrared ray or red/green light-emitting diodes. PPG-based heart beat measurement requires no separate electrodes attached to the skin and needs only a compact sensor on fingers or wrists to measure bio-signals. Thus, this method is convenient to be used in a public place. As shown in Figure 4, when light is emitted with finger surfaces facing each other, and with light-emitting diodes and light-receiving diodes attached on both upper and lower sides, it is possible to detect changes in the light permeability at the time (QRS complex) when blood passes through the peripheral blood vessel depending on the heart beats. Since the acquired pulse waves are small, signals obtained through an amplifying circuit are analyzed. As the obtained pulse waves are observed, it is possible to judge vascular diseases such as HRV, irregular pulse, and contraction.

3.2.2. Health Status and HRV

In order to examine health conditions, recently, not only physical indicators, but mental and stress-related indicators are also considered. The HRV is useful in analyzing such physical and mental health conditions in an integrated manner. Methods to analyze the HRV include ways to examine the frequency range and time domain in examination of autonomous nerve states. In reference to parameters collected from such methods as variables, stress indicators are derived and used in such methods.
Heart beat changes reflect complex biological activities related to autonomous nerves and various biological elements such as respiration, blood pressure, temperature, blood vessel, exercise, etc. Biological mechanisms have different frequency elements, respectively, and heart beat changes reflect the sum of such frequency elements. When the HRV is examined, a certain frequency range is analyzed to measure the influence of each mechanism. For frequency range analysis, parameters of very low frequency (VLF; 0.0033–0.04 Hz), low frequency (LF; 0.04–0.15 Hz), high frequency (HF; 0.15–0.4 Hz), and LF/HF are used. LF is a parameter reflecting activities of both the sympathetic system and parasympathetic system. When there is a disease causing an excessive reaction of the sympathetic system, LF increases. HF elements are closely related to the electric stability of a hart. When there are reactions such as stress, panic, and anxiety, HF decreases [2].
The time-domain analysis method is to calculate and analyze the time interval of normal heart beats. Parameters related to time domain analysis include SDNN (standard deviation of normal to normal interval) and RMSSD (root mean square of successive differences). As shown in Equation (1), SDNN is a parameter reflecting the general state of heart beat variance in reference to the standard deviation of heart beats. It indicates the ability to resist stress. As shown in Equation (2), RMSSD reflects short-term variance of heart beats. It is highly related to the parasympathetic system and decreases when the object is stressed [39].
S D N N = 1 N i = 1 N R R i R R ¯ 2
R M S S D = 1 N 1 i = 1 N 1 ( R R i + 1 R R i ) 2

4. Experimentation and Discussion

By means of the model with a weight adjusted through dataset learning, as stated in 2.1 above, images were acquired in real time from a thermal image camera and classified to identify individuals with fever. In order to analyze the HRV, UBioMacpa developed byBiosense Creative Co., Ltd. (Seoul in Republic of Korea) were utilized. Ten individuals were divided into groups with or without fever symptoms for the experiment. In Table 1 shown below, Table 1(a) represents the control group, which is the normal body temperature group; Table 1(b) represents the experimental group identified as having fever symptoms; and Figure 5 displays the results. HRV parameters—pulse variability, mean beat per min (meanBPM), SDNN, and RMSSD—were compared to analyze correlations. Table 1 displays the measured values of ten control subjects and ten experimental subjects, for a total of twenty subjects. On average, the pulse variability of the control group was 37.65, mean beat per min was 75.26, SDNN was 64.83, and RMSS was 42.24. The pulse variability value of the experimental group was 31.91, mean beat per min was 91.00, SDNN was 42.34, and RMSSD was 25.32. As shown in Table 1 and Figure 5, the experimental group showed a lower level of pulse variability, SDNN, and RMSSD than the control group. Only the mean beat per min was higher than that of the latter.
Figure 6 shows the heart beat distributions and health conditions of the control group and experimental group. Figure 6a shows the control group, and Figure 6b shows the experimental group. As shown in these figures, the control group showed a distinctive triangular form of heart beat distribution, which indicates a good health condition. In contrast, the experimental group’s heart beat distribution is not of a clear triangular form, which indicates that stress was accumulated and the objects were not in a good health condition. The left side of the graph indicates the state of stress and irregular pulses in reference to the balance of autonomous nerves. The control group is in the range of normal health conditions, while the experimental group shows symptoms of chronic stress and the initial stage of irregular pulses.
The green table on the right of Figure 6 is a table showing the autonomic nerve balance. The image was extracted using the left heart rate distribution graph in Figure 6 and the mean BPM, SDNN, and RMSSD in Table 1. According to the positions of the green square pointer in Figure 6a,b, the stress and health status of the subject can be checked. A small green square pointer indicates stability when it is centered on the red bounding box. The green square pointer is based on the red bounding box, and the closer it is to the upper left, the more the parasympathetic nerve is activated, and the lower the right, the sympathetic nerve is activated. Hyperactivity of the parasympathetic nerve can be predicted to show signs of health abnormalities such as arrhythmia, as well as psychologically complex states such as anxiety and fear. Conversely, the activation of the sympathetic nerve can be predicted as a cause of chronic stress and disease, accompanied by a state of physical complexity as the state of tension and excitement of the body continues to be maintained. It was confirmed that the experimental group in Figure 6b was generally located in arrhythmia and acute stress rather than chronic stress. On the heart rate distribution graph, it was confirmed that the control group had a long bar graph and was centralized, while the experimental group had a short bar graph and was dispersed.
Table 2 compares the detection performance (mean average precision) and frames per second (FPS) of faster R-CNN, a deep learning model used in the proposed system, with YOLO and SSD, which are similar models, in order to compare the performance of the detection models.
Table 3 shows the functions of the existing thermal imaging system and our proposed system. In most of the thermal image access management systems, a face recognition algorithm is applied to the general image to find a face, and the body temperature is derived by mapping it with the thermal image in the corresponding area. The face recognition algorithm of the proposed system and the existing thermal imaging system both detect the face area; however, the thermal imaging system detects faces in the input real color image, whereas the proposed system is trained to detect faces directly in the thermal image. Deep learning is applied to the thermal image to determine if a person is recognized and if the individual has a fever. Existing thermal imaging systems can recognize faces and measure body temperature, but it is difficult to accurately predict the health status of a measurer because it does not have a separate function for measuring other bio-signals. Our proposed study uses the PPG sensor to additionally acquire the person’s heart rate and HRV data and compare and analyze the correlation with body temperature, so it is possible to predict the health status of the subject and make more accurate discrimination. Due to the fact that the proposed system detects faces from thermal images with different textures, the detection accuracy may be lower than that of existing thermal imaging systems; however, it has been confirmed that detecting the shape of the face and whether a mask is worn is not a problem.

5. Conclusions

This study presents a method to identify individuals with fever based on thermal images when deep learning is applied. In order to investigate the relationship between body temperature and health status, a study was proposed to extract HRV with a PPG sensor and predict the symptoms of abnormal health of the subject. As a result of the experiment, it turned out that the group with fever showed a low level of pulse variability, SDNN, and RMSSD and a high level of mean beat per min. In addition, it was possible to determine based on the heart beat distribution that individuals of high body temperature would not be in a good health condition due to accumulated stress. Rather, HRV parameters indicated that such individuals suffered acute stress and were in the initial stage of irregular pulses. In order to prevent the spread of the virus, it is necessary to make more detailed judgment in the field. Since the existing access control system only measures body temperature, it was difficult to determine the health status or condition of the subject. In order to accurately predict the abnormal symptoms of the body, it is necessary to analyze the correlation with other bio-signals that can predict health conditions. Therefore, we measured two bio-signals that can be easily checked in the field and confirmed that there is a correlation between body temperature and HRV.
Our study is expected to increase reliability with more detailed bio-signal information and health condition prediction results in specific situations in which abnormal symptoms need to be screened. If the research results are automated with an algorithm for analyzing the correlation between body temperature and HRV parameters, it is expected that it can be applied to a health condition monitoring system. Furthermore, it is expected that it will be used in a wider range of fields if the system is designed to detect regions in each part of the body and analyze the correlation between body heat information and the bio-signals of a specific part.

Author Contributions

Conceptualization, M.-H.L., H.-J.M. and S.-K.K.; methodology, M.-H.L. and S.-K.K.; software, M.-H.L. and S.-K.K.; validation, M.-H.L., H.-J.M. and S.-K.K.; formal analysis, M.-H.L. and H.-J.M. investigation, M.-H.L.; resources, S.-K.K.; data curation, M.-H.L. and S.-K.K.; writing—original draft preparation, M.-H.L.; writing—review and editing, M.-H.L.; visualization, M.-H.L.; supervision, H.-J.M. and S.-K.K.; project administration, S.-K.K.; funding acquisition, M.-H.L. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Data Availability Statement

Not applicable.

Acknowledgments

This paper was supported by Wonkwang University in 2022.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Kim, H. The Response of A.I Systems in other Countries to Corona Virus(COVID-19) Infections: E-Government, Policy, A.I Utilizing Cases. J. Digit. Converg. 2020, 18, 479–493. [Google Scholar] [CrossRef]
  2. Lin, J.-W.; Lu, M.-H.; Lin, Y.-H.L. A Thermal Camera Based Continuous Body Temperature Measurement System. In Proceedings of the IEEE International Conference on Computer Vision Workshops (ICCVW), Seoul, Republic of Korea, 27–28 October 2019. [Google Scholar] [CrossRef]
  3. Ting, D.S.W.; Carin, L.; Dzau, V.; Wong, T.Y. Digital Technology and COVID-19. Nat. Med. 2020, 26, 459–461. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  4. Teju, V.; Bhavana, D. An Efficient Object Detection Using OFSA for Thermal Imaging. Int. J. Electr. Eng. Educ. 2020. [Google Scholar] [CrossRef]
  5. Viola, P.; Jones, M. Rapid Object Detection Using a Boosted Cascade of Simple Features. In Proceedings of the 2001 IEEE Compute Society Conference on Computer Vision and Pattern Recognition (CVPR), Kauai, HI, USA, 8–14 December 2001. [Google Scholar] [CrossRef]
  6. Krizhevsky, A.; Sutskever, I.; Hinton, G.E. ImageNet Classification with Deep Convolutional Neural Networks. Adv. Neural Inf. Process. Syst. 2012, 25, 1–9. [Google Scholar] [CrossRef] [Green Version]
  7. Girshick, R.; Donahue, J.; Darrell, T.; Malik, J. Rich Feature Hierarchies for Accurate Object Detection and Semantic Segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Columbus, OH, USA, 23–28 June 2014; pp. 580–587. [Google Scholar] [CrossRef] [Green Version]
  8. Batomalaque, M.B.; Camacho, C.M.R.; Dalida, M.J.P.; Delmo, J.A.B. Image to Text Conversion Technique for Anti-Plagiarism System. IJASC 2019, 1, 1–9. [Google Scholar] [CrossRef]
  9. Ren, S.; He, K.; Girshick, R.; Sun, J. Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks. IEEE Trans. Pattern Anal. Mach. Intell. 2017, 39, 1137–1149. [Google Scholar] [CrossRef] [Green Version]
  10. Redmon, J.; Divvala, S.; Girshick, R.; Farhadi, A. You Only Look Once: Unified, Real-Time Object Detection. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016; pp. 779–788. [Google Scholar] [CrossRef]
  11. Jiang, H.; Learned-Miller, E. Face Detection with the Faster R-CNN. In Proceedings of the 2017 12th IEEE International Conference on Automatic Face & Gesture Recognition (FG 2017), Washington, DC, USA, 30 May–3 June 2017. [Google Scholar] [CrossRef] [Green Version]
  12. Yang, W.; Jiachun, Z. Real-Time Face Detection Based on YOLO. In Proceedings of the 2018 1st IEEE International Conference on Knowledge Innovation and Invention (ICKII), Jeju, Republic of Korea, 23–27 July 2018; pp. 221–224. [Google Scholar] [CrossRef]
  13. Fan, X.; Jiang, M. Retina FaceMask: A Single Stage Face Mask Detector for Assisting Control of the COVID-19 Pandemic. In Proceedings of the 2020 IEEE Computer Society Conference on Computer Vision and Pattern Recognition (CVPR), Melbourne, Australia, 17–20 October 2021. [Google Scholar] [CrossRef]
  14. Nemechek, P. Pulse rate variability as a biomarker of COVID-19 infection, hospital risk stratification, and post hospitalization recovery. Immunol. Infect. 2020, 1, 1–5. Available online: https://www.sciaeon.org/articles/Pulse-rate-variability-as-a-biomarker-of-COVID-19-infection-hospital-risk-stratification-and-post-hospitalization-recovery.pdf (accessed on 28 May 2021).
  15. Gingl, Z. A Photoplethysmograph Experiment for Microcontroller Labs. Int. J. Electr. Eng. Educ. 2012, 49, 42–60. [Google Scholar] [CrossRef] [Green Version]
  16. Suzuki, D.O.; Taques, B.O.; Marques, J.L. Electrocardiogram Experiment for Analog Electronic Laboratory. Int. J. Electr. Eng. Educ. 2015, 52, 248–263. [Google Scholar] [CrossRef]
  17. Beyaz, A. Air Quality Evaluation with a Low-cost Dust Sensor for a Hencoop. Agric. Sci. Dig. 2019, 39, 236–243. [Google Scholar] [CrossRef]
  18. Cui, F.; Yue, Y.; Zhang, Y.; Zhang, Z.; Zhou, H.S. Advancing biosensors with machine learning. ACS Sens. 2020, 5, 3346–3364. [Google Scholar] [CrossRef] [PubMed]
  19. Beyaz, A.; Ozkaya, M. Canopy analysis and thermographic abnormalities determination possibilities of olive trees by using data mining algorithms. Not. Bot. Horti Agrobot.-Cluj-Napoca 2021, 49, 12139. [Google Scholar] [CrossRef]
  20. Alhadrami, H.A. Biosensors: Classifications, medical applications, and future prospective. Biotechnol. Appl. Biochem. 2018, 65, 497–508. [Google Scholar] [CrossRef]
  21. Du, X.; Zhou, J. Application of biosensors to detection of epidemic diseases in animals. Res. Vet. Sci. 2018, 118, 444–448. [Google Scholar] [CrossRef] [PubMed]
  22. Miller, R.; Yazgan, I.; Sadik, O.A. Biosensors for the Detection of Emerging Plants and Animals Fungal Pathogens; Smart Biosensor Technology, CRC Press: Boca Raton, FL, USA, 2018; pp. 487–502. [Google Scholar] [CrossRef]
  23. Ambreen, L.; Sharma, G. Applications of biosensors in agriculture. Int. J. Mod. Agric. 2021, 10, 1089–1096. Available online: http://www.modern-journals.com/index.php/ijma/article/view/828 (accessed on 5 June 2022).
  24. Mohanraj, R. Biosensors for Emerging and Re-Emerging Infectious Diseases; Biotechnology and Applied Biochemistry; Elsevier: Amsterdam, The Netherlands, 2022; pp. 123–136. [Google Scholar]
  25. Mohankumar, P.; Ajayan, J.; Mohanraj, T.; Yasodharan, R. Recent developments in biosensors for healthcare and biomedical applications: A review. Measurement 2021, 167, 108293. [Google Scholar] [CrossRef]
  26. Liu, W.; Anguelov, D.; Erhan, D.; Szegedy, C.; Reed, S.; Fu, C.-Y.; Berg, A.C. SSD: Single Shot MultiBox Detector. In European Conference on Computer Vision; Springer: Cham, Switzerland, 2016; Volume 9905, pp. 21–37. [Google Scholar] [CrossRef]
  27. Lee, M.; Mun, H.-J. Comparison Analysis and Case Study for Deep Learning-Based Object Detection Algorithm. IJASC 2020, 2, 7–16. [Google Scholar] [CrossRef]
  28. Ranjan, R.; Patel, V.M.; Chellappa, R. HyperFace: A Deep Multi-Task Learning Framework for Face Detection, Landmark Localization, Pose Estimation, and Gender Recognition. IEEE Trans. Pattern Anal. Mach. Intell. 2019, 41, 121–135. [Google Scholar] [CrossRef] [Green Version]
  29. Lee, S.H. Deep Learning Based Face Mask Recognition for Access Control. J. Korea-Acad.-Ind. Coop. Soc. 2020, 21, 395–400. [Google Scholar] [CrossRef]
  30. Xue, B.; Hu, J.; Zhang, P. Intelligent Detection and Recognition System for Mask Wearing Based on Improved RetinaFace Algorithm. In Proceedings of the 2020 2nd International Conference on Machine Learning, Big Data and Business Intelligence (MLBDBI), Taiyuan, China, 23–25 October 2020. [Google Scholar] [CrossRef]
  31. Susanto, S.; Putra, F.A.; Analia, R.; Suciningtyas, I.K.L.N. The Face Mask Detection for Preventing the Spread of COVID-19 at Politeknik Negeri Batam. Available online: https://ieeexplore.ieee.org/document/9350556 (accessed on 28 May 2021).
  32. Lee, M.J.; Kim, Y.M.; Lim, Y.M. Masked Face Temperature Measurement System Using Deep Learning. J. Korea Multimed. Soc. 2021, 24, 208–214. [Google Scholar] [CrossRef]
  33. Kim, J.-H.; Kim, E.-K. Face Recognition and Temperature Measurement Access Control System Using Machine Learning. J. Korea Inst. Electron. Commun. Sci. 2021, 16, 197–202. [Google Scholar] [CrossRef]
  34. Lin, C.-H.; Wang, Z.-H.; Jong, G.-J. A De-Identification Face Recognition Using Extracted Thermal Features Based on Deep Learning. IEEE Sens. J. 2020, 20, 9510–9517. [Google Scholar] [CrossRef]
  35. Taelman, J.; Vandeput, S.; Spaepen, A.; Van Huffel, S. Influence of Mental Stress on Heart Rate and Heart Rate Variability. IFMBE Proc. 2009, 22, 1366–1369. [Google Scholar] [CrossRef]
  36. Thayer, J.F.; Åhs, F.; Fredrikson, M.; Sollers, J.J.; Wager, T.D. A Meta-Analysis of Heart Rate Variability and Neuroimaging Studies: Implications for Heart Rate Variability as a Marker of Stress and Health. Neurosci. Biobehav. Rev. 2012, 36, 747–756. [Google Scholar] [CrossRef] [PubMed]
  37. Negishi, T.; Abe, S.; Matsui, T.; Liu, H.; Kurosawa, M.; Kirimoto, T.; Sun, G. Contactless Vital Signs Measurement System Using RGB-Thermal Image Sensors and Its Clinical Screening Test on Patients with Seasonal Influenza. Sensors 2020, 20, 2171. [Google Scholar] [CrossRef] [Green Version]
  38. Kim, Y.; Park, Y.; Kim, J.; Chul, E.; Lee, E. Remote Heart Rate Monitoring Method Using Infrared Thermal Camera. Int. J. Eng. Res. Technol. 2018, 11, 493–500. [Google Scholar]
  39. Wang, Z.; Wang, F.; Ji, X. Analysis of Autonomic Nervous System Based on HRV. In Proceedings of the 2019 4th International Conference on Mechanical, Control and Computer Engineering (ICMCCE), Hohhot, China, 5–27 October 2019. [Google Scholar] [CrossRef]
Figure 1. System overview.
Figure 1. System overview.
Applsci 12 12457 g001
Figure 2. Network structure of faster R-CNN.
Figure 2. Network structure of faster R-CNN.
Applsci 12 12457 g002
Figure 3. Example of a thermal image dataset. (a) Fever symptom (37.5 °C or higher); (b) normal (below 37.0 °C).
Figure 3. Example of a thermal image dataset. (a) Fever symptom (37.5 °C or higher); (b) normal (below 37.0 °C).
Applsci 12 12457 g003
Figure 4. Pulse wave measurement method.
Figure 4. Pulse wave measurement method.
Applsci 12 12457 g004
Figure 5. Bio-signal measurement result graph. (a) Control group (normal body temperature); (b) experimental group (fever body temperature).
Figure 5. Bio-signal measurement result graph. (a) Control group (normal body temperature); (b) experimental group (fever body temperature).
Applsci 12 12457 g005
Figure 6. Heart rate distribution and health status analysis. (a) Control group (normal body temperature); (b) experimental group (fever body temperature).
Figure 6. Heart rate distribution and health status analysis. (a) Control group (normal body temperature); (b) experimental group (fever body temperature).
Applsci 12 12457 g006
Table 1. Experimental Results of Control group and Experimental group.
Table 1. Experimental Results of Control group and Experimental group.
(a) Control group (normal body temperature)
NPulse VariabilityMean BPMSDNNRMSSD
144.6877.9058.6538.00
239.7874.5055.9042.10
335.2377.0073.8044.10
434.2576.0066.0040.20
535.6275.1263.2043.05
638.5774.1467.3544.26
737.2572.5465.0041.00
835.4276.0071.0044.25
937.1474.1269.5446.00
1038.5277.0057.8539.45
Average37.6575.2664.8342.24
(b) Experimental group (fever body temperature)
NPulse VariabilityMean BPMSDNNRMSSD
124.7993.4045.2028.10
230.1486.3044.8027.41
331.8482.4040.9025.10
433.5383.0043.2026.15
535.0085.4541.5426.25
629.1280.5640.2524.26
734.5191.0041.3325.32
833.3487.4243.1127.56
934.1680.3440.2128.16
1032.7183.4942.8927.47
Average31.9185.3442.3426.58
Table 2. Comparative result of detection model performance of the proposed system.
Table 2. Comparative result of detection model performance of the proposed system.
Detection ModelmAP (%)Inference Speed (FPS)
Faster R-CNN (proposed system)76.45
YOLO73.781
SSD30074.346
Table 3. Comparison of the characteristics of the existing system and the proposed system.
Table 3. Comparison of the characteristics of the existing system and the proposed system.
Thermal Imaging SystemProposed System
Face Detection (mask)YesYes
Body TemperatureYesYes
HRV and Stress PredictionNoYes
Publisher’s Note: MDPI stays neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Share and Cite

MDPI and ACS Style

Lee, M.-H.; Mun, H.-J.; Kang, S.-K. Prediction of Health Problems Using Deep Learning Images and Bio-Signals. Appl. Sci. 2022, 12, 12457. https://doi.org/10.3390/app122312457

AMA Style

Lee M-H, Mun H-J, Kang S-K. Prediction of Health Problems Using Deep Learning Images and Bio-Signals. Applied Sciences. 2022; 12(23):12457. https://doi.org/10.3390/app122312457

Chicago/Turabian Style

Lee, Min-Hye, Hyung-Jin Mun, and Sun-Kyoung Kang. 2022. "Prediction of Health Problems Using Deep Learning Images and Bio-Signals" Applied Sciences 12, no. 23: 12457. https://doi.org/10.3390/app122312457

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop