SlideShare a Scribd company logo
1 of 4
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1195
SKIN CANCER ANALYSIS USING CNN
Sharmila Gaikwad1, Aparna Agnihotri2, Amreen Khan3, Vaishnav Kanekar4
1Sharmila Gaikwad (Professor, Computer Engineering Dept, Rajiv Gandhi Institute of Technology)
2Aparna Agnihotri (Student, Computer Engineering Dept, Rajiv Gandhi Institute of Technology)
3Amreen Khan (Student, Computer Engineering Dept, Rajiv Gandhi Institute of Technology)
4Vaishnav Kanekar (Student, Computer Engineering Dept, Rajiv Gandhi Institute of Technology)
---------------------------------------------------------------------***----------------------------------------------------------------------
Abstract - Skin Cancer is an uncontrollable growth of
abnormal cells in the epidermis, which is the outer layer of the
skin. It occurs when the DNA is altered and can't correctly
control skin cell growth. Skin cancer is also one of the most
critical forms of cancer.
There are four main types of skin cancer:Basalcellcarcinoma,
Basal cell carcinoma, Merkel cell cancer, and Melanoma.
Detection of Skin cancer in the early stage is essential to cure
it. The dermatological way to diagnose skin cancer is with the
dermoscopic assessment of the lesion followed by biopsy and
histopathologic evaluation. This process is very long, leading
the patient to critical stagesofcancer. Manytechnologieshave
been developed to increase the accuracy of detecting skin
cancer as early as possible. Computer Vision can play a vital
role in medical Image diagnosis, which the existing systems
have proved.
In this paper, we have presented a model to detect skin cancer
from seven types. The types are Melanoma (MEL), Melanomic
Neves (NV), Basal Cell Carcinoma (BCC), Actinic Keratosis
(AKIEC), Benign Keratosis (BKL), Dermatofibroma (DF),
Vascular Lesion (VASC). We have builttheCNN(Convolutional
Neural Network) model to perform image processing on
various image datasets of skin cancer to analyzeanddetectits
type.
Key Words: CNN, image processing, cells, Melanoma
(MEL), Melanomic Neves (NV), Basal Cell Carcinoma
(BCC), Actinic Keratosis (AKIEC), Benign Keratosis
(BKL), Dermatofibroma (DF), Vascular Lesion (VASC).
1.INTRODUCTION
Skin is the most exposed part of the body because it is the
outermost part hence UV rays, dust, micro-organisms. It can
lead to several diseases, and in the worst-case scenario, to
skin cancer. As stated by World Health Organization (WHO),
it is a depressing fact that one in every three cancers
identified is skin cancer. As it correctly said, absolute power
corrupts absolutely. Because of humans' exponential
increase in control over nature and subsequent global
warming, the ozone layer is depleted, inverselyleadingto an
increase in the harmful UV radiations reaching Earth's
surface because of loss of the protective filter. An additional
4,500 melanoma and 3,00,00 nonmelanoma skin cancer
cases will result in a 10% decrease in ozone levels. Other
causes of skin cancer include modernizing diets, smoking,
and alcohol. Abnormal changes in skin color, appearance,
shape, size, itching, bleeding are the cautionary signs of skin
cancer. Due to negligence, lack of facilities, or simply
unavailability of crucial time, the disease rushes to become
fatal by spreading to other body parts.
In this paper we have presented an Artificial intelligence
take for developing a skin cancer classifier model. There are
3 steps in this automated classifier:
1.1 DATA COLLECTION
One has to tackle a significant obstacle: collecting datasets
for skin cancer classification. Automated analysis and
prediction of pigmented lesions on the skin often meet
roadblocks such as limited datasets or diverse and unique
skin lesion images. It is necessary that the classifier model is
exposed to varied ideas during its learning time and doesn't
suddenly get petrified but somewhat habituated and
confident while dealing with on-the-spot images in routine
practice.
1.2 FEATURE EXTRACTION
Feature extraction means to be able to take important notes
by taking into consideration only specific essential
properties that will be different from other inputs. A CNN
model is considered appropriate for processing the images
as it works on pixel values. Layers such as Conv2D help by
sliding a filter or kernel over input data in 2D and upon
performingelement-wisemultiplicationandconcludingwith
summing up of results into a single output pixel. This kernel
slides over every location serves the same operation and
transforms the input 2D matrix into a new 2D matrix. The
ReLU or Rectified Linear Unit is an activation function which
outputs zero if the input is not positive and if it is positive.
Max pooling assists in calculating the maximum value of
every patch in all feature maps.
1.3 CLASSIFICATION
Classification is an essential step because it is in charge of
outputting the interpretations about the information
acquired from previous actions to classify the input image
into Seven types or random images. These were the general
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1196
steps in building our model fororganizingskincancerandits
detection types.
2. SYSTEM MODEL
2.1 INTRODUCTION TO DATASET COLLECTION:
The dataset we have collected is from Kaggle, “Skin Cancer
MNIST: 10000”, an extensive collection of skin cancer
images, which was the foundational need of the project. It
consists of more than 10,000 images belonging to different
skin cancer classes such as Bkl, Mel, Nv, Bcc, Df, Vasc, Akiec.
It comes along with a .csv file that links a large number of
images to their lesion ids, furthermore providing
information such as localization of skin cancer, age of the
patient, gender of the patient, and the method of concluding
type skin cancer.
2.2 BUILDING ALGORITHM FOR MODEL:
Fig -1: Proposed System
The proposed system flow begins with loading the .csv file.
The data frame obtained from the .csv file is modified to suit
the programmer’s ease.
Modifications first include label encoding, which converts
textual classes of the data frame to numerical types, as data
handling is more accessible with numbers than text.
Fig -2: System Architecture
From the System Architecture diagram, it is visualized that
the whole dataset is divided into training and testing
datasets. The training dataset is preprocessed; for instance,
images read are resized and resampled. Resampling is
performed to account for an imbalance in the number of
pictures for seven types of skin cancer. Now the
preprocessed images are fed for feature extraction and
selection. At this time, the CNN model comesintothepicture,
the Conv2D, max pooling, with activation function ReLU,
flatten layer, dense layer finally helps build a complete
model. The testing dataset isnowtested,andthemodel gives
a prediction.
2.3. MODEL AND IT’S METRICES:
Fig -3: Model and Metrices
Model consists of layers such as:
Conv2d Layer: In a Conv2d layer, a filter or kernel slides
over the 2D input data, for example, an image array, after
which an elementwisemultiplicationtakesplace,resultingin
a single output pixel. The kernel will repeat the same
operation by sliding on every location of the input image
array, transforming a 2D matrix of features into another 2D
matrix of elements.
ReLU: It is an activation function that goes by the complete
form of Rectified Linear Unit. It is a piecewise linearfunction
that outputs the input as positive directlyifitisnon-negative
or outputs it as zero.
Max Pooling: An operation that performs pooling, meaning
that it calculates the maximum value in each area of the
feature map. But unlike average pooling, the results are
down-sampled feature maps that highlight the most
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1197
critical/present feature from that area. In contrast, average
pooling is the average of all the extracted features.
Metrics: Metrics are used to monitor and measure the
performance of a model. Metrices such as accuracy,
precision, recall, confusion matrix and F-1 Score are used in
our model.
Fig -4: Training and Validation Loss
Training and Validation Loss:
In the above (Fig-4) the curve in yellow indicates how well
the model is fitting the training data, while the red curve
indicates how well the model fits new data.
Fig -5: Training and Validation Accuracy
Training and Validation Accuracy:
In the above (Fig-5) the curve in yellow indicates the model
classifying images while training the dataset whereas the
curve in red indicates the accuracy we calculate for dataset
and used for validating the model.
Accuracy of our model achieved stands at 94.09% while
recall and precision stand at 94.09.% and 93.99%
respectively.
3. FRONTEND WEBSITE:
We have successfully implementedourbackendandlinkedit
with our frontend. The website providesfunctionalitiessuch
as finding a dermatologist, information about types of
cancer, representation of cancer in pie charts according to
age, sex & body parts. Our website will be helpful in the real
world and will ease our doctors and patients in determining
cancer and treating it at early stages.
Fig -6: Skin cancer detection.
When any doctor or patient enters any cancerous image, the
model will do analysis and predict if the infected part is
cancerous or not. If the infected part is cancerous, it will
indicate skin cancer from seven types. If the user uploads
any random image other than the infected part,theclassifier
will classify it as a random image.
For example, in the above (Fig-6), the classification is given
as Bkl, one of the seven types of skin cancer.
Other Functionalities of Website:
Types of Skin Cancer: The types of skin cancer will give the
user information about the seven types of skin cancer, their
differentiation, and the pictorial representation of the
classes.
Research Paper: This tab will providetheresearchwork we
have carried out during the execution of the project and
relevant papers and publications.
Check Skin Cancer: This feature allowstheuserto enter the
infection region image and check if it's cancerous or not. It
also gives predictions about the seven types of skin cancer.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1198
Fig -7: Nearby Dermatologist.
Near By Dermatologist: This feature will allow the user to
search the nearby dermatologist to consult and go with the
treatment ahead. Thus, it will help thepatientssearchforthe
doctor's clinic by entering their locality. It will save the
patients time and help them in early action towards treating
cancer and trying to cure it.
4. CONCLUSION:
Even if it has occurred in only 4% population, Malignant
melanoma accounts for 75% of deaths caused due to skin
cancer. In this paper, we have built a CNN-based model and
website to help dermatologists detectskincancer.Doingthis
will give them more time to perfect their future steps in
curing the patients because time plays a vital role in curing
this deadly disease. The paper also discusses how the
classifier must admit potential faults if it cannot classify
images correctly and definethemasrandom ratherthangive
confident predictions. It is a sensitive issue and can harm
somebody’s life. Detection and curing of cancer play a vital
role, and our project will undoubtedly provide a helping
hand to patients and doctors and will be helpful in the real-
time world. The challenges ahead of us are more and more
collection of datasets and more awareness in patients to get
themselves tested without being ignorant as it spreads
quickly to other body parts by beginning as a tiny lesion.
REFERENCES
[1] Gaikwad, Sharmila. "Study on Artificial Intelligence in
Healthcare."20217thInternational ConferenceonAdvanced
Computing and Communication Systems (ICACCS). Vol. 1.
IEEE, 2021
[2] Gaikwad, Sharmila, Saarah Patel, and Ajinkya
Shetty."BrainTumor Detection: An Application Based on
Machine Learning." 2021 2nd International Conference for
Emerging Technology (INCET). IEEE, 2021
[3] Y. Li and L. Shen, “Skin Lesion Analysis towardsMelaoma
Detection Using Deep Learning Network”,” Sensors, vol. 18,
no. 2, p. 556, 2018.
[4] V. M, "Melanoma Skin Cancer Detection using Image
Processing and Machine Learning", International Journal of
Trend in Scientific Research and Development, vol. -3,no.-4,
pp. 780-784, 2019.
[5] Kamalpreet Kaur, et al. “Melanoma SkinCancerDetection
Using Image Processing and Machine Learning.Vol 1
IEEE,2019
[6] M. Dildar et al., "Skin Cancer Detection: A Review Using
Deep Learning Techniques", International Journal of
Environmental Research and Public Health, vol.18,no.10, p.
5479, 2021.
[7] H. Zunair and A. Ben Hamza, "Melanoma detection using
adversarial training and deep transfer learning", Physics in
Medicine & Biology, vol. 65, no. 13, p. 135005, 2020.
[8] M. A. Hossin, F. F. Rupom, H. R. Mahi, A. Sarker, F. Ahsan,
and S. Warech, “Melanoma skin cancer detection using Deep
Learning and advanced regularizer,” 2020 International
Conference on Advanced Computer ScienceandInformation
Systems (ICACSIS), 2020.

More Related Content

Similar to SKIN CANCER ANALYSIS USING CNN

IRJET - Classification of Cancer Images using Deep Learning
IRJET -  	  Classification of Cancer Images using Deep LearningIRJET -  	  Classification of Cancer Images using Deep Learning
IRJET - Classification of Cancer Images using Deep LearningIRJET Journal
 
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...IRJET Journal
 
IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...
IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...
IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...IRJET Journal
 
Skin Cancer Detection Application
Skin Cancer Detection ApplicationSkin Cancer Detection Application
Skin Cancer Detection ApplicationIRJET Journal
 
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...IRJET Journal
 
Skin Cancer Detection Using Deep Learning Techniques
Skin Cancer Detection Using Deep Learning TechniquesSkin Cancer Detection Using Deep Learning Techniques
Skin Cancer Detection Using Deep Learning TechniquesIRJET Journal
 
Detection of Covid-19, Skin Cancer and Malaria using AI and Image Processing
Detection of Covid-19, Skin Cancer and Malaria using AI and Image ProcessingDetection of Covid-19, Skin Cancer and Malaria using AI and Image Processing
Detection of Covid-19, Skin Cancer and Malaria using AI and Image ProcessingIRJET Journal
 
Designing of Application for Detection of Face Mask and Social Distancing Dur...
Designing of Application for Detection of Face Mask and Social Distancing Dur...Designing of Application for Detection of Face Mask and Social Distancing Dur...
Designing of Application for Detection of Face Mask and Social Distancing Dur...IRJET Journal
 
Detection of Skin Diseases based on Skin lesion images
Detection of Skin Diseases based on Skin lesion imagesDetection of Skin Diseases based on Skin lesion images
Detection of Skin Diseases based on Skin lesion imagesIRJET Journal
 
IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...
IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...
IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...IRJET Journal
 
Covid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural NetworksCovid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural NetworksIRJET Journal
 
Detection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural NetworkDetection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural NetworkIRJET Journal
 
Detection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural NetworkDetection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural NetworkIRJET Journal
 
IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...
IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...
IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...IRJET Journal
 
Skin Cancer Detection using Image Processing in Real Time
Skin Cancer Detection using Image Processing in Real TimeSkin Cancer Detection using Image Processing in Real Time
Skin Cancer Detection using Image Processing in Real Timeijtsrd
 
A convolutional neural network for skin cancer classification
A convolutional neural network for skin cancer classificationA convolutional neural network for skin cancer classification
A convolutional neural network for skin cancer classificationIJICTJOURNAL
 
IRJET -Malignancy Detection using Pattern Recognition and ANNS
IRJET -Malignancy Detection using Pattern Recognition and ANNSIRJET -Malignancy Detection using Pattern Recognition and ANNS
IRJET -Malignancy Detection using Pattern Recognition and ANNSIRJET Journal
 
Segmentation and Classification of Skin Lesions Based on Texture Features
Segmentation and Classification of Skin Lesions Based on Texture FeaturesSegmentation and Classification of Skin Lesions Based on Texture Features
Segmentation and Classification of Skin Lesions Based on Texture FeaturesIJERA Editor
 
Product defect detection based on convolutional autoencoder and one-class cla...
Product defect detection based on convolutional autoencoder and one-class cla...Product defect detection based on convolutional autoencoder and one-class cla...
Product defect detection based on convolutional autoencoder and one-class cla...IAESIJAI
 
Skin Cancer Detection and Classification
Skin Cancer Detection and ClassificationSkin Cancer Detection and Classification
Skin Cancer Detection and ClassificationDr. Amarjeet Singh
 

Similar to SKIN CANCER ANALYSIS USING CNN (20)

IRJET - Classification of Cancer Images using Deep Learning
IRJET -  	  Classification of Cancer Images using Deep LearningIRJET -  	  Classification of Cancer Images using Deep Learning
IRJET - Classification of Cancer Images using Deep Learning
 
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
A REVIEW ON BRAIN TUMOR DETECTION FOR HIGHER ACCURACY USING DEEP NEURAL NETWO...
 
IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...
IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...
IRJET - Automated Segmentation and Detection of Melanoma Skin Cancer using De...
 
Skin Cancer Detection Application
Skin Cancer Detection ApplicationSkin Cancer Detection Application
Skin Cancer Detection Application
 
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
IRJET-Multiclass Classification Method Based On Deep Learning For Leaf Identi...
 
Skin Cancer Detection Using Deep Learning Techniques
Skin Cancer Detection Using Deep Learning TechniquesSkin Cancer Detection Using Deep Learning Techniques
Skin Cancer Detection Using Deep Learning Techniques
 
Detection of Covid-19, Skin Cancer and Malaria using AI and Image Processing
Detection of Covid-19, Skin Cancer and Malaria using AI and Image ProcessingDetection of Covid-19, Skin Cancer and Malaria using AI and Image Processing
Detection of Covid-19, Skin Cancer and Malaria using AI and Image Processing
 
Designing of Application for Detection of Face Mask and Social Distancing Dur...
Designing of Application for Detection of Face Mask and Social Distancing Dur...Designing of Application for Detection of Face Mask and Social Distancing Dur...
Designing of Application for Detection of Face Mask and Social Distancing Dur...
 
Detection of Skin Diseases based on Skin lesion images
Detection of Skin Diseases based on Skin lesion imagesDetection of Skin Diseases based on Skin lesion images
Detection of Skin Diseases based on Skin lesion images
 
IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...
IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...
IRJET- Three-Dimensional Analysis on Dermoscopic Images with RSA Encrypted Di...
 
Covid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural NetworksCovid Face Mask Detection Using Neural Networks
Covid Face Mask Detection Using Neural Networks
 
Detection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural NetworkDetection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural Network
 
Detection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural NetworkDetection of Diabetic Retinopathy using Convolutional Neural Network
Detection of Diabetic Retinopathy using Convolutional Neural Network
 
IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...
IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...
IRJET - A Deep Novel Study on Different CNN Algorithms for Face Skin Disease ...
 
Skin Cancer Detection using Image Processing in Real Time
Skin Cancer Detection using Image Processing in Real TimeSkin Cancer Detection using Image Processing in Real Time
Skin Cancer Detection using Image Processing in Real Time
 
A convolutional neural network for skin cancer classification
A convolutional neural network for skin cancer classificationA convolutional neural network for skin cancer classification
A convolutional neural network for skin cancer classification
 
IRJET -Malignancy Detection using Pattern Recognition and ANNS
IRJET -Malignancy Detection using Pattern Recognition and ANNSIRJET -Malignancy Detection using Pattern Recognition and ANNS
IRJET -Malignancy Detection using Pattern Recognition and ANNS
 
Segmentation and Classification of Skin Lesions Based on Texture Features
Segmentation and Classification of Skin Lesions Based on Texture FeaturesSegmentation and Classification of Skin Lesions Based on Texture Features
Segmentation and Classification of Skin Lesions Based on Texture Features
 
Product defect detection based on convolutional autoencoder and one-class cla...
Product defect detection based on convolutional autoencoder and one-class cla...Product defect detection based on convolutional autoencoder and one-class cla...
Product defect detection based on convolutional autoencoder and one-class cla...
 
Skin Cancer Detection and Classification
Skin Cancer Detection and ClassificationSkin Cancer Detection and Classification
Skin Cancer Detection and Classification
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityMorshed Ahmed Rahath
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxmaisarahman1
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsvanyagupta248
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxSCMS School of Architecture
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Call Girls Mumbai
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARKOUSTAV SARKAR
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesMayuraD1
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdfKamal Acharya
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwaitjaanualu31
 
Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxNadaHaitham1
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...Amil baba
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationBhangaleSonal
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersMairaAshraf6
 

Recently uploaded (20)

A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptxS1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
S1S2 B.Arch MGU - HOA1&2 Module 3 -Temple Architecture of Kerala.pptx
 
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
DeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakesDeepFakes presentation : brief idea of DeepFakes
DeepFakes presentation : brief idea of DeepFakes
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills KuwaitKuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
Kuwait City MTP kit ((+919101817206)) Buy Abortion Pills Kuwait
 
Wadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptxWadi Rum luxhotel lodge Analysis case study.pptx
Wadi Rum luxhotel lodge Analysis case study.pptx
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Computer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to ComputersComputer Lecture 01.pptxIntroduction to Computers
Computer Lecture 01.pptxIntroduction to Computers
 

SKIN CANCER ANALYSIS USING CNN

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1195 SKIN CANCER ANALYSIS USING CNN Sharmila Gaikwad1, Aparna Agnihotri2, Amreen Khan3, Vaishnav Kanekar4 1Sharmila Gaikwad (Professor, Computer Engineering Dept, Rajiv Gandhi Institute of Technology) 2Aparna Agnihotri (Student, Computer Engineering Dept, Rajiv Gandhi Institute of Technology) 3Amreen Khan (Student, Computer Engineering Dept, Rajiv Gandhi Institute of Technology) 4Vaishnav Kanekar (Student, Computer Engineering Dept, Rajiv Gandhi Institute of Technology) ---------------------------------------------------------------------***---------------------------------------------------------------------- Abstract - Skin Cancer is an uncontrollable growth of abnormal cells in the epidermis, which is the outer layer of the skin. It occurs when the DNA is altered and can't correctly control skin cell growth. Skin cancer is also one of the most critical forms of cancer. There are four main types of skin cancer:Basalcellcarcinoma, Basal cell carcinoma, Merkel cell cancer, and Melanoma. Detection of Skin cancer in the early stage is essential to cure it. The dermatological way to diagnose skin cancer is with the dermoscopic assessment of the lesion followed by biopsy and histopathologic evaluation. This process is very long, leading the patient to critical stagesofcancer. Manytechnologieshave been developed to increase the accuracy of detecting skin cancer as early as possible. Computer Vision can play a vital role in medical Image diagnosis, which the existing systems have proved. In this paper, we have presented a model to detect skin cancer from seven types. The types are Melanoma (MEL), Melanomic Neves (NV), Basal Cell Carcinoma (BCC), Actinic Keratosis (AKIEC), Benign Keratosis (BKL), Dermatofibroma (DF), Vascular Lesion (VASC). We have builttheCNN(Convolutional Neural Network) model to perform image processing on various image datasets of skin cancer to analyzeanddetectits type. Key Words: CNN, image processing, cells, Melanoma (MEL), Melanomic Neves (NV), Basal Cell Carcinoma (BCC), Actinic Keratosis (AKIEC), Benign Keratosis (BKL), Dermatofibroma (DF), Vascular Lesion (VASC). 1.INTRODUCTION Skin is the most exposed part of the body because it is the outermost part hence UV rays, dust, micro-organisms. It can lead to several diseases, and in the worst-case scenario, to skin cancer. As stated by World Health Organization (WHO), it is a depressing fact that one in every three cancers identified is skin cancer. As it correctly said, absolute power corrupts absolutely. Because of humans' exponential increase in control over nature and subsequent global warming, the ozone layer is depleted, inverselyleadingto an increase in the harmful UV radiations reaching Earth's surface because of loss of the protective filter. An additional 4,500 melanoma and 3,00,00 nonmelanoma skin cancer cases will result in a 10% decrease in ozone levels. Other causes of skin cancer include modernizing diets, smoking, and alcohol. Abnormal changes in skin color, appearance, shape, size, itching, bleeding are the cautionary signs of skin cancer. Due to negligence, lack of facilities, or simply unavailability of crucial time, the disease rushes to become fatal by spreading to other body parts. In this paper we have presented an Artificial intelligence take for developing a skin cancer classifier model. There are 3 steps in this automated classifier: 1.1 DATA COLLECTION One has to tackle a significant obstacle: collecting datasets for skin cancer classification. Automated analysis and prediction of pigmented lesions on the skin often meet roadblocks such as limited datasets or diverse and unique skin lesion images. It is necessary that the classifier model is exposed to varied ideas during its learning time and doesn't suddenly get petrified but somewhat habituated and confident while dealing with on-the-spot images in routine practice. 1.2 FEATURE EXTRACTION Feature extraction means to be able to take important notes by taking into consideration only specific essential properties that will be different from other inputs. A CNN model is considered appropriate for processing the images as it works on pixel values. Layers such as Conv2D help by sliding a filter or kernel over input data in 2D and upon performingelement-wisemultiplicationandconcludingwith summing up of results into a single output pixel. This kernel slides over every location serves the same operation and transforms the input 2D matrix into a new 2D matrix. The ReLU or Rectified Linear Unit is an activation function which outputs zero if the input is not positive and if it is positive. Max pooling assists in calculating the maximum value of every patch in all feature maps. 1.3 CLASSIFICATION Classification is an essential step because it is in charge of outputting the interpretations about the information acquired from previous actions to classify the input image into Seven types or random images. These were the general
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1196 steps in building our model fororganizingskincancerandits detection types. 2. SYSTEM MODEL 2.1 INTRODUCTION TO DATASET COLLECTION: The dataset we have collected is from Kaggle, “Skin Cancer MNIST: 10000”, an extensive collection of skin cancer images, which was the foundational need of the project. It consists of more than 10,000 images belonging to different skin cancer classes such as Bkl, Mel, Nv, Bcc, Df, Vasc, Akiec. It comes along with a .csv file that links a large number of images to their lesion ids, furthermore providing information such as localization of skin cancer, age of the patient, gender of the patient, and the method of concluding type skin cancer. 2.2 BUILDING ALGORITHM FOR MODEL: Fig -1: Proposed System The proposed system flow begins with loading the .csv file. The data frame obtained from the .csv file is modified to suit the programmer’s ease. Modifications first include label encoding, which converts textual classes of the data frame to numerical types, as data handling is more accessible with numbers than text. Fig -2: System Architecture From the System Architecture diagram, it is visualized that the whole dataset is divided into training and testing datasets. The training dataset is preprocessed; for instance, images read are resized and resampled. Resampling is performed to account for an imbalance in the number of pictures for seven types of skin cancer. Now the preprocessed images are fed for feature extraction and selection. At this time, the CNN model comesintothepicture, the Conv2D, max pooling, with activation function ReLU, flatten layer, dense layer finally helps build a complete model. The testing dataset isnowtested,andthemodel gives a prediction. 2.3. MODEL AND IT’S METRICES: Fig -3: Model and Metrices Model consists of layers such as: Conv2d Layer: In a Conv2d layer, a filter or kernel slides over the 2D input data, for example, an image array, after which an elementwisemultiplicationtakesplace,resultingin a single output pixel. The kernel will repeat the same operation by sliding on every location of the input image array, transforming a 2D matrix of features into another 2D matrix of elements. ReLU: It is an activation function that goes by the complete form of Rectified Linear Unit. It is a piecewise linearfunction that outputs the input as positive directlyifitisnon-negative or outputs it as zero. Max Pooling: An operation that performs pooling, meaning that it calculates the maximum value in each area of the feature map. But unlike average pooling, the results are down-sampled feature maps that highlight the most
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1197 critical/present feature from that area. In contrast, average pooling is the average of all the extracted features. Metrics: Metrics are used to monitor and measure the performance of a model. Metrices such as accuracy, precision, recall, confusion matrix and F-1 Score are used in our model. Fig -4: Training and Validation Loss Training and Validation Loss: In the above (Fig-4) the curve in yellow indicates how well the model is fitting the training data, while the red curve indicates how well the model fits new data. Fig -5: Training and Validation Accuracy Training and Validation Accuracy: In the above (Fig-5) the curve in yellow indicates the model classifying images while training the dataset whereas the curve in red indicates the accuracy we calculate for dataset and used for validating the model. Accuracy of our model achieved stands at 94.09% while recall and precision stand at 94.09.% and 93.99% respectively. 3. FRONTEND WEBSITE: We have successfully implementedourbackendandlinkedit with our frontend. The website providesfunctionalitiessuch as finding a dermatologist, information about types of cancer, representation of cancer in pie charts according to age, sex & body parts. Our website will be helpful in the real world and will ease our doctors and patients in determining cancer and treating it at early stages. Fig -6: Skin cancer detection. When any doctor or patient enters any cancerous image, the model will do analysis and predict if the infected part is cancerous or not. If the infected part is cancerous, it will indicate skin cancer from seven types. If the user uploads any random image other than the infected part,theclassifier will classify it as a random image. For example, in the above (Fig-6), the classification is given as Bkl, one of the seven types of skin cancer. Other Functionalities of Website: Types of Skin Cancer: The types of skin cancer will give the user information about the seven types of skin cancer, their differentiation, and the pictorial representation of the classes. Research Paper: This tab will providetheresearchwork we have carried out during the execution of the project and relevant papers and publications. Check Skin Cancer: This feature allowstheuserto enter the infection region image and check if it's cancerous or not. It also gives predictions about the seven types of skin cancer.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 03 | Mar 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 1198 Fig -7: Nearby Dermatologist. Near By Dermatologist: This feature will allow the user to search the nearby dermatologist to consult and go with the treatment ahead. Thus, it will help thepatientssearchforthe doctor's clinic by entering their locality. It will save the patients time and help them in early action towards treating cancer and trying to cure it. 4. CONCLUSION: Even if it has occurred in only 4% population, Malignant melanoma accounts for 75% of deaths caused due to skin cancer. In this paper, we have built a CNN-based model and website to help dermatologists detectskincancer.Doingthis will give them more time to perfect their future steps in curing the patients because time plays a vital role in curing this deadly disease. The paper also discusses how the classifier must admit potential faults if it cannot classify images correctly and definethemasrandom ratherthangive confident predictions. It is a sensitive issue and can harm somebody’s life. Detection and curing of cancer play a vital role, and our project will undoubtedly provide a helping hand to patients and doctors and will be helpful in the real- time world. The challenges ahead of us are more and more collection of datasets and more awareness in patients to get themselves tested without being ignorant as it spreads quickly to other body parts by beginning as a tiny lesion. REFERENCES [1] Gaikwad, Sharmila. "Study on Artificial Intelligence in Healthcare."20217thInternational ConferenceonAdvanced Computing and Communication Systems (ICACCS). Vol. 1. IEEE, 2021 [2] Gaikwad, Sharmila, Saarah Patel, and Ajinkya Shetty."BrainTumor Detection: An Application Based on Machine Learning." 2021 2nd International Conference for Emerging Technology (INCET). IEEE, 2021 [3] Y. Li and L. Shen, “Skin Lesion Analysis towardsMelaoma Detection Using Deep Learning Network”,” Sensors, vol. 18, no. 2, p. 556, 2018. [4] V. M, "Melanoma Skin Cancer Detection using Image Processing and Machine Learning", International Journal of Trend in Scientific Research and Development, vol. -3,no.-4, pp. 780-784, 2019. [5] Kamalpreet Kaur, et al. “Melanoma SkinCancerDetection Using Image Processing and Machine Learning.Vol 1 IEEE,2019 [6] M. Dildar et al., "Skin Cancer Detection: A Review Using Deep Learning Techniques", International Journal of Environmental Research and Public Health, vol.18,no.10, p. 5479, 2021. [7] H. Zunair and A. Ben Hamza, "Melanoma detection using adversarial training and deep transfer learning", Physics in Medicine & Biology, vol. 65, no. 13, p. 135005, 2020. [8] M. A. Hossin, F. F. Rupom, H. R. Mahi, A. Sarker, F. Ahsan, and S. Warech, “Melanoma skin cancer detection using Deep Learning and advanced regularizer,” 2020 International Conference on Advanced Computer ScienceandInformation Systems (ICACSIS), 2020.