Next Article in Journal
Trends in Surgical and Beauty Masks for a Cleaner Environment
Next Article in Special Issue
Novel Topical Application of a Postbiotic, LactoSporin®, in Mild to Moderate Acne: A Randomized, Comparative Clinical Study to Evaluate its Efficacy, Tolerability and Safety
Previous Article in Journal / Special Issue
Laminarin Effects, a β-(1,3)-Glucan, on Skin Cell Inflammation and Oxidation
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

The Development of a Skin Image Analysis Tool by Using Machine Learning Algorithms

1
School of Engineering, London South Bank University, 103 Borough Road, London SE1 0AA, UK
2
Auckland Tongji Medical & Rehabilitation Equipment Research Centre, Tongjing Zhejiang College, JiaXing 314000, China
3
School of Computer Science and Engineering, Changshu Institute of Technology, Changshu 215500, China
4
College of Communication Engineering, Chongqing University, Chongqing 400044, China
*
Author to whom correspondence should be addressed.
Cosmetics 2020, 7(3), 67; https://doi.org/10.3390/cosmetics7030067
Submission received: 23 July 2020 / Revised: 17 August 2020 / Accepted: 20 August 2020 / Published: 22 August 2020
(This article belongs to the Special Issue Feature Papers in Cosmetics in 2020)

Abstract

:
We present our latest research work on the development of a skin image analysis tool by using machine-learning algorithms. Skin imaging is very import in skin research. Over the years, we have used and developed different types of skin imaging techniques. As the number of skin images and the type of skin images increase, there is a need of a dedicated skin image analysis tool. In this paper, we report the development of such software tool by using the latest MATLAB App Designer. It is simple, user friendly and yet powerful. We intend to make it available on GitHub, so that others can benefit from the software. This is an ongoing project; we are reporting here what we have achieved so far, and more functions will be added to the software in the future.

1. Introduction

Skin imaging is very import in skin research. To date, there are many popular skin imaging technologies. Dermatoscopy is probably the most widely used skin imaging technology and is commonly used to examine skin lesions with a dermatoscope [1,2]. A dermatoscope typically consists of a magnifier, a light source (polarized or non-polarized) and a transparent plate. Skin photos and videos can be recorded by using a digital camera. DermLite is a small dermatoscope that can be attached to a smart phone. It claims to be the world’s best-selling dermatoscope [3]. DermLite II MultiSpectral is another pocket size dermatoscope, it is button activated, with cross-polarized 4-color imaging [4]. Nerasolutions provides several imaging devices, not only for skin imaging, but also for hair imaging [5]. Visia Skin Analysis System takes multiple photos of face and analyzes the melanin distributions, the texture, the wrinkle, the pores, etc. [6]. EPISCAN I-200 is a high resolution ultrasound imaging system that can take skin images using ultrasound up to 50 MHz [7]. Last not the least, Epsilon permittivity imaging system is a capacitive image technology developed in our research group [8,9,10,11,12,13]. It is based on dielectric constant measurement principle, and has been used for skin hydration imaging, skin solvent penetration imaging, as well as hair and nail imaging. With all these skin imaging technologies, there is a genuine need for a general purpose, user friendly and yet powerful skin software analysis tool. In this paper, we present our latest work on the development of a skin image analysis tool based on machine-learning algorithms. We will first present the design and the structure of the skin software analysis tool, then present the results and discussions and finally, the future works.

2. Materials and Methods

2.1. Front-End GUI

The front-end GUI (graphical user interface) is designed and developed by using MATLAB App Designer, which is relatively new and provides much better user interface components and a better integrated development environment than the previous MATLAB GUIDE. With MATLAB App Designer, you can easily design and develop a user friendly software interface. It offers a grid layout manager to organize the user interface and automatic reflow options to make the app detect and respond to changes in screen size. The coding is also a lot simpler, with machine generated code automatically grayed out. Figure 1 shows the GUI of the skin image analysis software tool. The left panel shows the original image and analyzed results. The right panel contains several tabs with each tab is dedicated to different functions. Apart from reading from image files, it can also get image frames from webcams and other USB based video devices. This is done by using “MATLAB Support Package for USB Webcams” Add-On module which has shown significant performance improvement than the existing video input function from the image acquisition toolbox.

2.2. Back-End MATLAB Files

The back-end of the program is implemented in a number of MATLAB functions saved as standard M-files. MATLAB functions, also called modules or subroutines in other programming languages, accept input arguments and return output arguments. They operate on variables within their own workspace, different from the main program. Table 1 shows the structure of the skin analysis software tool.

2.3. Functionalities

The main purpose of this work is to develop a general purpose skin image analysis software with many useful skin image analysis functions. It is also designed to be flexible, so more new functions can be added in the future.
The current implemented functions are image classifications [8,9,13], skin texture analysis and skin image retrieval by using Gabor wavelet transform, PCA (principle components analysis) and GLCM (gray-level co-occurrence matrix) [10,11], as well as skin live image analysis.

3. Results and Discussions

3.1. Skin Image Classification

Skin image classification is the most important function of the skin analysis tool. With skin image classification, we would be able to differentiate normal skin from damaged skin, healthy skin from diseased skin. It can also potentially be used for identifying different types of skin diseases and skin cancers. Skin image classification is achieved through transfer learning by using pre-trained deep-learning neural networks such as AlexNet [14], GoogLeNet [15], VGG19 [16] and ResNet101 [17]. The performance of image classification is tested on four different types of images, as shown in Figure 2, Figure 3, Figure 4 and Figure 5. All the images are randomly divided into training set (70%) and test set (30%) and automatically resized to 224 × 224 × 3 (except for AlexNet, 227 × 227 × 3) before training.
The grayscale images also automatically converted to color images prior to training. During the training, it uses stochastic gradient descent with momentum, the initial learning rate is 10^-4, mini batch size is 5, max epochs is 6, and it also shuffles training between every epoch. The trainings are done on a standard desktop computer with Intel® Core™ i7-3770 CPU @3.4 GHz, 8 cores, 16 GB RAM and Windows 8.1 operating system.
Figure 2 shows the skin capacitive images acquired by using our Epsilon permittivity imaging system [8,9]. There are total 90 images divided into six categories, palm, neck, leg, face, forearm and palm. The image classification results are shown in the first row of Table 2. AlexNet has the shortest training time and VGG19 has the longest training time. The classification overall accuracy is good, except VGG19 and GoogLeNet gives an impressive 100% classification accuracy.
Figure 3 shows the skin cancer images from ISIC database [18]. These are standard digital photo images. There are totally 600 images divided into two categories: Benign and Malignant. The image classification results are shown in the second row of Table 2. AlexNet again has the shortest training time, and VGG19 has the longest. GoogLeNet and ResNet101 have the best classification accuracy.
Figure 4 shows the skin ultrasound images acquired by using EPISCAN I-200 ultrasound instrument. There are totally 610 images measured from six different skin sites, chin, cheeks, nose, under eye, lips and forearm. The image classification results are shown in the third row of Table 2. AlexNet again has the shortest training time and VGG19 the longest. ResNet101 has the best classification accuracy. The accuracy is slightly lower than lower than previous two types of skin images, this is understandable, as skin ultrasound images have higher similarities.
Currently, the coronavirus COVID-19 has become a global pandemic and is affecting more than 21 million people in more than 200 countries and territories around the world. We wanted to see if our software tool can effectively work on COVID-19 chest X-ray images, as shown in Figure 5. The COVID-19 chest X-ray images are from a research group in University of Montreal [19] and the normal chest X-ray images are from Kaggle [20]. There are totally 50 images divided into two categories: COVID-19 and normal. The image classification results are shown in the third row of Table 2. AlexNet, not surprisingly, has the shortest training time and VGG19 the longest. The overall classification accuracy is high (>85%) and ResNet101 has an impressive 100% classification accuracy.
In summary, AlexNet is consistently the fastest in image classification training, while VGG19 is the slowest. The ResNet101 has the highest overall classification accuracy and VGG19 has the lowest overall classification accuracy. For skin capacitive image classification, GoogLeNet is the best. For other image classification, e.g., skin cancer images, skin ultrasound images and Chest X-ray images, ResNet101 is the best.
The most significant benefit of skin image classification is that users would be able to use the skin image analysis tool with a webcam camera to take a picture of a skin lesion, the software will be able to tell whether it is benign or malignant. Users can also train the neural networks on their own skin image data, to recognize different types of skin diseases/cancers. This could be a potential low cost skin diseases/cancer diagnosis device.
The classification accuracy depends on the number and the quality of skin images, as well as the deep-learning neural networks. To further improve the accuracy, we will need train the neural networks on larger number of skin images and better quality of skin images. Currently we only have tested four different deep-learning neural networks, in the future, we will implement more neural networks. In addition, all the neural networks are trained on a set of default optimized values, next step is to allow users to specify their own training parameter values.

3.2. Skin Texture Analysis and Image Retrieval

Skin surface is not even, it is rich with patterns and lines. Our previous studies show that we can analyze the skin texture by using Gabor wavelet transform, PCA (principle components analysis) and GLCM (gray-level co-occurrence matrix). With Gabor wavelet transform, we can get skin features vectors on color, shape and texture [10]. With GLCM (gray-level co-occurrence matrix), we can get four GLCM feature vectors, e.g., angular second moment (ASM), entropy (ENT), contrast (CON) and correlation (COR). The results showed that the angular second moment increases as age increases and entropy decreases as age increases [11]. We can also analyze the skin micro-relief, the results showed that the change in the intensity of primary and secondary lines during arm extension is increasing against chronological age, while the average number of closed polygons per square mm is decreasing against chronological age [12].
Another useful usage of skin texture analysis is image retrieval or image searching. This is particularly suitable for skin images, where similarities are much higher than normal images. Figure 6a shows the skin cancer image searching results using Gabor wavelet transform. As we use the same image database for training and searching, the best matching result is the query image itself. The second to sixth best matching results are also from the same category of the query image, i.e., benign images. Figure 6b–d show the image searching results using Gabor wavelet transform on skin capacitive images, skin ultrasound images and chest X-ray images. Similar to Figure 6a, all the best matching results are from the same category of the query image.
Table 3 shows the image searching results of different algorithms on different types of images. Calculation time is how long each algorithm takes to calculate the feature vectors of all the images and built a database of the results. Searching time is how long each algorithm takes to search the database and find the six best matching results. The error rate is calculated as how many images in the best six matching results are in wrong category. Figure 6 shows the best scenario of Gabor wavelet transform searching results, the error rates are 0 out of 6, while Table 3 shows the average error rates. The overall results show that Gabor wavelet transform general takes longer time to calculate and to search, while PCA is the shortest for calculation and GLCM is the shortest for searching. Although Gabor wavelet transform is slower compared with other image retrieval techniques, such as PCA and GLCM, Gabor wavelet transform is the best for retrieving images. This agrees well our previous studies on skin capacitive contact images and digital facial images [10]. All the algorithms are running on a set of optimized default values, in the future, we will allow users to specify their own parameter values.

3.3. Skin Live Image Analysis

Apart from analyze image files, it can also analyze skin live images captured from webcams and other USB based video devices. The live image capture is achieved by using the latest MATLAB Add-On module called “MATLAB Support Package for USB Webcams”. Figure 7 shows the live image analysis of facial skin using the ProScope HR with 50 times magnification [21]. The facial features such as skin texture, speckles and facial hair are clear to see. The software can divide the live image into three color channels, red, green and blue (RGB) and therefore perform the RGB calculation in real time. Figure 7a shows the original image and processed image (green channel only), Figure 7b shows the original image and processed image (red channel only). As we can see, green channel has more surface information, while red channel has more information on melanin (facial hair) and skin color.
Figure 7c shows the original image and the processed image, calculated by adding green channel × 0.7 with blue channel × 0.7, without red channel. As we can see, this enhances the surface texture information of the skin. Users can specify they own RGB channel calculations. Facial skin has enormous cosmetic values, this functionality could be very useful for analyzing skin facial features, such as facial hairs, smoothness, speckles, scars, wrinkles, all in real time! More functions will be added. The current version of the program is available as a MATLAB App Installer format on GitHub [22].

4. Conclusions

We have developed a skin image analysis tool based on machine-learning algorithms. It uses the latest MATLAB App Designer to create the graphic user interface on the front end and use MATLAB M-files as the backend. The current version provides functions such as skin image classifications, skin image retrieval and skin live image analysis. The skin image classification is done by using deep-learning neural networks such as AlexNet, GoogLeNet, VGG19 and ResNet101. The classification results show that GoogLeNet is the best for skin capacitive image classifications, while ResNet101 is the best for skin cancer image, skin ultrasound image and chest X-ray image classifications. The biggest advantage of this skin image analysis tool is that users would be able to retrain the deep-learning neural networks on their own skin image data and therefore perform their own skin image classifications, such as recognizing different types of skin diseases. This could lead to a potential low cost skin disease/cancer diagnose device. The skin image retrieval is done by using Gabor wavelet transform, PCA and GLCM. The results show that Gabor wavelet transform has the overall best accuracy despite of being the slowest. In skin live image analysis, by manipulating the RGB values of the images, it has potentials for analyzing skin facial features, such as facial hairs, smoothness, speckles, scars, wrinkles in real time. More functionality will be added on in the future. The software tool can work on a variety of different types of skin images, such as skin digital images, skin capacitive images, skin ultrasound images and more. Our study shows the apart from skin images, it can also work on other types of images, such as chest X-ray images. We have made the program available on GitHub so that others can benefit from it.
For the future work, we would like to test the skin image analysis tool on larger skin image dataset, on more volunteers, of different ages, genders, races and colors, as well as different skin conditions (dry, normal, silky, rough, etc.) and different skin diseases/cancers. For image classifications, more deep-learning neural networks will be implemented, and users would be able to select different training parameters. For skin image retrieval, users would be able to specify different parameter values for Gabor wavelet transform, PCA and GLCM. For live image analysis, more functions, such as image segmentation, object detections and so on, will be implemented.

Author Contributions

Conceptualization, P.X. and D.C.; methodology, P.X., X.O., X.Z., W.P., C.B. and E.C.; formal analysis, P.X., X.O., X.Z., W.P. and C.B.; investigation, X.O., X.Z., W.P. and E.C.; data curation, P.X. and C.B.; original draft preparation, P.X.; review and editing of manuscript, P.X. and D.C.; supervision, P.X. and D.C. All authors have read and agreed to the published version of the manuscript.

Funding

This research received no external funding.

Acknowledgments

We thank the London South Bank University and Biox Systems, Ltd., UK for the financial support. We also thank Longport, Inc., USA for loaning the EPISCAN I-200 instrument.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Argenziano, G.; Soyer, H.P. Dermoscopy of pigmented skin lesions--a valuable tool for early diagnosis of melanoma. Lancet Oncol. 2011, 2, 443–449. [Google Scholar] [CrossRef]
  2. Vestergaard, M.E.; Macaskill, P.; Holt, P.E.; Menzies, S.W. Dermoscopy compared with naked eye examination for the diagnosis of primary melanoma: A meta-analysis of studies performed in a clinical setting. Br. J. Dermatol. 2008, 159, 669–676. [Google Scholar] [CrossRef] [PubMed]
  3. Dermlite. Available online: https://dermlite.com/ (accessed on 18 March 2020).
  4. DermLite II Multi-Spectral. Available online: https://www.eufoton.com/en/products/accessories/dermlite-multispectral-ii (accessed on 18 March 2020).
  5. Nerasolutions. Available online: https://www.nerasolutions.co.uk/skin-analysis-devices (accessed on 18 March 2020).
  6. Visia Skin Analysis System. Available online: https://www.canfieldsci.com/imaging-systems/visia-complexion-analysis/ (accessed on 18 March 2020).
  7. EPISCAN I-200. Available online: https://www.longportinc.com/about-longport (accessed on 18 March 2020).
  8. Zhang, X.; Pan, W.; Bontozoglou, C.; Chirikhina, E.; Chen, D.; Xiao, P. Skin Capacitive Imaging Analysis Using Deep Learning GoogLeNet. In Intelligent Computing. SAI 2020. Advances in Intelligent Systems and Computing; Arai, K., Kapoor, S., Bhatia, R., Eds.; Springer: Cham, Switzerland, 2020; Volume 1229. [Google Scholar] [CrossRef]
  9. Zhang, X.; Pan, W.; Xiao, P. In-vivo Skin Capacitive Image Classification Using AlexNet Convolution Neural Network. In Proceedings of the 2018 IEEE 3rd International Conference on Image, Vision and Computing (ICIVC), Chongqing, China, 27–29 June 2018; pp. 439–443. [Google Scholar] [CrossRef]
  10. Ou, X.; Pan, W.; Zhang, X.; Xiao, P. Skin image retrieval using Gabor wavelet texture feature. Int. J. Cosmet. Sci. 2016, 38, 607–614. [Google Scholar] [CrossRef] [PubMed]
  11. Ou, X.; Pan, W.; Xiao, P. In-Vivo Skin Capacitive imaging Analysis by using Grey Level Co-occurrence Matrix (GLCM). Int. J. Pharm. 2014, 460, 28–32. [Google Scholar] [CrossRef] [PubMed] [Green Version]
  12. Bontozoglou, C.; Zhang, X.; Xiao, P. Micro-relief analysis with skin capacitive imaging. Skin Res. Technol. 2019, 25, 165–170. [Google Scholar] [CrossRef] [PubMed]
  13. Bianconi, F.; Chirikhina, E.; Smeraldi, F.; Bontozoglou, C.; Xiao, P. Personal identification based on skin texture features from the forearm and multi-modal imaging. Skin Res. Technol. 2017, 23, 392–398. [Google Scholar] [CrossRef] [PubMed]
  14. Krizhevsky, A.; Sutskever, I.; Hinton, G.E. ImageNet classification with deep convolutional neural networks. In Proceedings of the International Conference on Neural Information Processing Systems, Lake Tahoe, NV, USA, 3–8 December 2012; pp. 1097–1105. [Google Scholar]
  15. Szegedy, C.; Liu, W.; Jia, Y.; Sermanet, P.; Reed, S.; Anguelov, D.; Erhan, D.; Vanhoucke, V.; Rabinovich, A. Going Deeper With Convolutions. In Proceedings of the The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Boston, MA, USA, 7–12 June 2015; pp. 1–9. [Google Scholar]
  16. Simonyan, K.; Zisserman, A. Very Deep Convolutional Networks for Large-Scale Image Recognition. ICLR 2015, arXiv:1409.1556v6. [Google Scholar]
  17. He, K.; Zhang, X.; Ren, S.; Sun, J. Deep Residual Learning for Image Recognition. arXiv 2015, arXiv:1512.03385. [Google Scholar]
  18. ISIC—The International Skin Imaging Collaboration (Skin Disease Database). Available online: https://isic-archive.com/#images (accessed on 20 March 2020).
  19. University of Montreal’s X-ray Images of COVID-19 Cases. Available online: https://github.com/ieee8023/covid-chestxray-dataset (accessed on 20 March 2020).
  20. Kaggle Chest X-Ray Images (Pneumonia). Available online: https://www.kaggle.com/paultimothymooney/chest-xray-pneumonia (accessed on 20 March 2020).
  21. ProScope, H.R. The ProScope Mobile & HR USB Handheld Digital Microscope. Available online: https://www.bodelin.com/ (accessed on 20 July 2020).
  22. Skin Image Analysis Tool GitHub Site. Available online: https://github.com/PerryXiao2015/LSBU-Skin-Image-Analysis-Tool (accessed on 21 August 2020).
Figure 1. The GUI (graphical user interface) of the skin image analysis tool.
Figure 1. The GUI (graphical user interface) of the skin image analysis tool.
Cosmetics 07 00067 g001
Figure 2. Sample skin capacitive images from different skin sites of a healthy volunteer. There are total 90 images divided into six categories, palm, neck, leg, face, forearm and palm.
Figure 2. Sample skin capacitive images from different skin sites of a healthy volunteer. There are total 90 images divided into six categories, palm, neck, leg, face, forearm and palm.
Cosmetics 07 00067 g002
Figure 3. Sample skin cancer images from ISIC database [18]. There are total 600 images divided into two categories, Benign and Malignant.
Figure 3. Sample skin cancer images from ISIC database [18]. There are total 600 images divided into two categories, Benign and Malignant.
Cosmetics 07 00067 g003
Figure 4. Sample skin ultrasound images from different skin sites of a healthy volunteer. There are total 610 images divided into six categories, chin, cheeks, nose, under eye, lips and forearm.
Figure 4. Sample skin ultrasound images from different skin sites of a healthy volunteer. There are total 610 images divided into six categories, chin, cheeks, nose, under eye, lips and forearm.
Cosmetics 07 00067 g004
Figure 5. Chest X-ray images from University of Montreal [19] and Kaggle [20]. There are total 50 images divided into two categories, COVID-19 and normal.
Figure 5. Chest X-ray images from University of Montreal [19] and Kaggle [20]. There are total 50 images divided into two categories, COVID-19 and normal.
Cosmetics 07 00067 g005
Figure 6. Image searching results using Gabor wavelet transform on different type of images. (a) skin capacitive images; (b) skin cancer images; (c) skin ultrasound images; (d) chest X-ray images.
Figure 6. Image searching results using Gabor wavelet transform on different type of images. (a) skin capacitive images; (b) skin cancer images; (c) skin ultrasound images; (d) chest X-ray images.
Cosmetics 07 00067 g006aCosmetics 07 00067 g006b
Figure 7. Live image analysis using the ProScope HR with 50 times magnification. (a) original image and processed image (green channel only); (b) original image and processed image (red channel only); (c) original image and the processed image (no red channel, green × 0.7 + blue × 0.7).
Figure 7. Live image analysis using the ProScope HR with 50 times magnification. (a) original image and processed image (green channel only); (b) original image and processed image (red channel only); (c) original image and the processed image (no red channel, green × 0.7 + blue × 0.7).
Cosmetics 07 00067 g007aCosmetics 07 00067 g007b
Table 1. Structure of the skin analysis tool.
Table 1. Structure of the skin analysis tool.
FilesComments
PX_DL_GUI.mlappMain GUI file
AlexnetTraining.mAlexNet training function
AlexnetClassify.mAlexNet classification function
GoogLeNetTraining.mGoogLeNet training function
GoogLeNetClassify.mGoogLeNet classification function
Gabor_Calculate.mGabor wavelet transform calculation function
Gabor_Search.mGabor wavelet transform search function
… …… …
Table 2. Image classification results.
Table 2. Image classification results.
Image TypesTable Column Head
ModelsTraining TimeAccuracy
Capacitive skin imagesAlexNet1 min 6 s83.33%
GoogLeNet1 min 39 s100.00%
VGG1912 min 5 s58.33%
ResNet1019 min 12 s87.50%
Skin cancer imagesAlexNet8 min 37 s73.89%
GoogLeNet13 min 23 s77.78%
VGG1991 min 15 s75.00%
ResNet10166 min 40 s77.78%
Skin ultrasound imagesAlexNet4 min 56 s69.44%
GoogLeNet10 min 51 s56.67%
VGG1971 min 59 s60.56%
ResNet10163 min 3 s70.56%
Chest X-ray imagesAlexNet43 s92.86%
GoogLeNet1 min 30 s92.85%
VGG196 min 44 s85.71%
ResNet1014 min 42 s100.00%
Table 3. Image searching results.
Table 3. Image searching results.
Image TypesTable Column Head
AlgorithmsCalculation TimeSearching TimeError Rate
Capacitive skin imagesGabor153 s1059 ms1/6
PCA1.6 s221 ms3/6
GLCM1.1 s25 ms2/6
Skin cancer imagesGabor370 s2834 ms0/6
PCA54 s1560 ms2/6
GLCM482 s698 ms2/6
Skin ultrasound imagesGabor324 s2743 ms2/6
PCA29 s2409 ms3/6
GLCM118 s220 ms1/6
Chest X-ray imagesGabor35 s813 ms0/6
PCA2.6 s162 ms2/6
GLCM30 s563 ms0/6

Share and Cite

MDPI and ACS Style

Xiao, P.; Zhang, X.; Pan, W.; Ou, X.; Bontozoglou, C.; Chirikhina, E.; Chen, D. The Development of a Skin Image Analysis Tool by Using Machine Learning Algorithms. Cosmetics 2020, 7, 67. https://doi.org/10.3390/cosmetics7030067

AMA Style

Xiao P, Zhang X, Pan W, Ou X, Bontozoglou C, Chirikhina E, Chen D. The Development of a Skin Image Analysis Tool by Using Machine Learning Algorithms. Cosmetics. 2020; 7(3):67. https://doi.org/10.3390/cosmetics7030067

Chicago/Turabian Style

Xiao, Perry, Xu Zhang, Wei Pan, Xiang Ou, Christos Bontozoglou, Elena Chirikhina, and Daqing Chen. 2020. "The Development of a Skin Image Analysis Tool by Using Machine Learning Algorithms" Cosmetics 7, no. 3: 67. https://doi.org/10.3390/cosmetics7030067

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