Increasing Rosacea Awareness Among Population Using Deep Learning and Statistical Approaches

Chengyu Yang,Chengjun Liu
2024-11-11
Abstract:Approximately 16 million Americans suffer from rosacea according to the National Rosacea Society. To increase rosacea awareness, automatic rosacea detection methods using deep learning and explainable statistical approaches are presented in this paper. The deep learning method applies the ResNet-18 for rosacea detection, and the statistical approaches utilize the means of the two classes, namely, the rosacea class vs. the normal class, and the principal component analysis to extract features from the facial images for automatic rosacea detection. The contributions of the proposed methods are three-fold. First, the proposed methods are able to automatically distinguish patients who are suffering from rosacea from people who are clean of this disease. Second, the statistical approaches address the explainability issue that allows doctors and patients to understand and trust the results. And finally, the proposed methods will not only help increase rosacea awareness in the general population but also help remind the patients who suffer from this disease of possible early treatment since rosacea is more treatable at its early stages. The code and data are available at <a class="link-external link-https" href="https://github.com/cyang322/rosacea_detection.git" rel="external noopener nofollow">this https URL</a>.
Computer Vision and Pattern Recognition
What problem does this paper attempt to address?
The main problem that this paper attempts to solve is to raise public awareness of rosacea and achieve automated rosacea detection through deep learning and statistical methods. Specifically, the authors aim to: 1. **Automatically distinguish patients**: Develop methods that can automatically distinguish patients with rosacea from those without the disease. 2. **Improve the interpretability of detection**: Solve the "black - box" problem of deep - learning models by using statistical methods, so that doctors and patients can understand and trust the detection results. 3. **Early diagnosis and treatment reminder**: Help raise public awareness of rosacea and remind patients to seek treatment as early as possible, because the disease is more easily treated in its early stages. ### Background problems - **Insufficient data**: There is a lack of labeled training data in medical images (such as facial images), and data collection is more difficult due to the confidentiality of patient information. - **Over - fitting problem**: Deep - learning models are prone to over - fitting on limited training data, resulting in poor generalization ability. - **Interpretability problem**: The black - box nature of deep - learning models makes their results difficult to interpret, affecting clinical acceptance. ### Solutions 1. **Deep - learning methods**: - Use the pre - trained ResNet - 18 model for fine - tuning to achieve automatic detection of rosacea. - Adopt the cross - entropy loss function for model training. 2. **Statistical methods**: - Calculate the means of two types of samples (rosacea and normal), and use the Euclidean distance to measure the distance between the test sample and the means of the two types of samples, and select the type with the smaller distance as the classification result. - Use principal component analysis (PCA) to extract the features of facial images to further improve the pixel - level Euclidean distance method. ### Experimental setup - **Training and validation data sets**: Use generated images to simulate real situations and protect patient privacy. - **Test data set**: Use real images to evaluate model performance. ### Results - **Deep - learning method**: Achieved 100% accuracy on the validation set, but there is an over - fitting problem on the test set, and the recall rate is only 0.58. - **Statistical method**: Although the precision is slightly lower, the recall rate is higher (0.88) and has better interpretability. Through these methods, the authors hope not only to improve the detection accuracy of rosacea, but also to enhance public awareness of this disease and promote early treatment.