Skip to content

razak17/skin_cancer_detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Skin cancer detection

These implementations are based on the following research papers:

Repo structure

  • dataset: Scripts and instructions on how to handle images

Requirements

Install required libraries

pip3 install -r requirements.txt

1. Melanoma lesion detection and segmentation using deep region based convolutional neural network and fuzzy C-means clustering.

This implementation of skin cancer detection has three main steps namely:

  1. Skin Enhancement Phase.
  2. Lesion localization Phase.
  3. Lesion segmentation Phase.

Skin Enhancement Phase

The first step was to preprocess / refine images to remove hair and other artifacts from then input image. We did this by running two morphological closing operations (dilation, then erosion) on the input image.