Skin Disease Detection Using Convolution
Skin Disease Detection Using Convolution
framework has the modified kind of U-Net, which higher accuracy even with the smaller training data size,
effectively uses Group Normalization (GN) within the they’ve used image data augmentation. The binary
encoder and also the decoder layers. Attention Gates (AG) classifier achieved an accuracy of 73% with 220 epochs of
that specializes in minute details within the skip coaching, and therefore the multiclass classifier's accuracy
connection, later incorporates Tversky Loss (TL) because is 72% with 200 epochs. Finally, the results are shown to
the output loss function is added. Rather than Batch the user, including the kind of disease, spread, and
Normalization (BN), GN is employed to extract the feature severity.
maps generated by the encoding path efficiently. To tell
apart high dimensional information from low-level 3. METHODOLOGY
irrelevant background regions within the input image, AGs
are used. Tversky Index (TI)-based TL is applied to We begin by resizing the images to 28,28 for better
accomplish better alliance between recall and precision. learning and then proceed to add the names and labels
To further strengthen feature propagation and encourage after which the plot parameters are set. The image pixels
feature reuse, atrous convolutions are applied within the are stored as a dependent variable while the target label is
connecting bridge between the encoder path and therefore stored as an independent feature. The data is divided into
the decoder path of the network. The proposed model is train and test split and it is reshaped to handle the
evaluated on the ISIC 2018 image dataset. imbalance issues (it can only be handled if the data is 2
Dimensional), after which Random Oversampler does the
[4] Deep learning approach to skin layer segmentation job of handling the imbalance. The data is fit on the train
in inflammatory dermatoses set and the new shape is checked, following which it is
reshaped again to 3 Dimension in order to train the
In practice, the analysis, including segmentation, is Convolutional Neural Network.
sometimes performed manually by the physician with all
drawbacks of such an approach, e.g., extensive time After checking if the shape is acceptable, the Convolutional
consumption and lack of repeatability. Recently, HFUS has Neural Network model is defined and subsequently the
become common in dermatological practice, yet it's barely first layer of the CNN is plotted. Max pooling is used to
supported by the use of automated analysis tools. To select the maximum features as identified by the
satisfy the necessity for skin layer segmentation and convolutional filter. After this, Batch Normalization does
measurement, they have developed an automatic the job of making the Artificial Neural Network faster and
segmentation method of both epidermis and SLEB layers. more stable by normalization of the layer’s inputs through
It consists of a fuzzy c-means clustering-based re-scaling and re-centering. The Convolutional Neural
preprocessing step followed by a U-shaped convolutional Network is Flattened to feed the fully connected Artificial
neural network. The network employs batch Neural Network and Dropout is used to avoid overfitting.
normalization layers adjusting and scaling the activation After all this, the first Artificial Neural layer is defined.
to make the segmentation more robust. The obtained Softmax is used as the activation function to the output
segmentation results are verified and compared to state- layer which has 7 neurons. For optimization, the learning
of-the-art methods addressing the skin layer rate is set to 0.001 and Adam optimizer is used.
segmentation. The obtained Dice coefficient adequate 0.87
and 0.83 for the epidermis and SLEB, respectively, proves The model is compiled with accuracy as metric and loss as
the developed framework’s efficiency, outperforming the Sparse categorical since we have multiple outputs and
opposite approaches. then after that the data is trained using sample validation
split as 0.2. The model is predicted on the test set and the
[5] Skin cancer detection using Convolutional and predicted probability is converted to classes. The model is
Artificial Neural Networks then finally evaluated. The parameters amount to about
half a million of which about a thousand are non-trainable
This paper focuses on the event of classifiers capable of params.
detecting skin cancer(s) given dermoscopic images. The
dataset used for the training is a part of the 2019 ISIC
Challenge, and consists of over 25,000 labeled
dermoscopic images. Specifically, classifying dermoscopic
images accounts for nine different diagnostic categories:
melanoma, melanocytic nevus, basal cell carcinoma,
keratosis, benign keratosis, dermatofibroma, vascular
lesion, and epithelial cell carcinoma, a number of which
are benign. They've developed classifiers -a binary
classifier and a multiclass classifier -on the Google Cloud
Platform using Convolutional Neural Networks (CNNs). To
forestall the classifiers from overfitting and to attain
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2163
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2164
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
[10] Akhtar Jamil, Merve Gun, Alaa Ali Hamid. Skin Lesions
Segmentation and Classification for Medical Diagnosis.
Researchgate April 2021.
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2165