SlideShare a Scribd company logo
1 of 5
Download to read offline
Natarajan Meghanathan et al. (Eds) : NLP, JSE, CST, SIP, ARIA - 2018
pp. 111โ€“ 115, 2018. ยฉ CS & IT-CSCP 2018 DOI : 10.5121/csit.2018.80212
MAMMOGRAPHY LESION DETECTION
USING FASTER R-CNN DETECTOR
Reza Reiazi1
, Reza Paydar2
, Ali Abbasian Ardakani3
, Maryam
Etedadialiabadi4
1,3
Department of Medical Physics, School of Medicine, Iran University of
Medical Sciences, Tehran, Iran
2
Department of Diagnostic Radiology, School of Allied science, Iran University
of Medical Sciences, Tehran, Iran
4
Department of Radiology, Milad Hospital, Tehran, Iran
ABSTRACT
Recently availability of large scale mammography databases enable researchers to evaluates
advanced tumor detections applying deep convolution networks (DCN) to mammography
images which is one of the common used imaging modalities for early breast cancer. With the
recent advance of deep learning, the performance of tumor detection has been developed by a
great extent, especially using R-CNNs or Region convolution neural networks. This study
evaluates the performance of a simple faster R-CNN detector for mammography lesion
detection using a MIAS databases.
KEYWORDS
Mammography, Convolution Neural Network, R-CNN, lesion
1. INTRODUCTION
Breast cancer is one of the most common causes of death for women in many countries. In
general, early detection is very important for cancer treatment and can decrease the mortality rate
in a grate extent. One of the common used imaging modalities for early breast cancer detection is
mammography in which an abnormality can be categorized as either normal, non-cancerous
(benign) or cancerous (malignant).Studies have shown that Mammography can reduce30% of
mortality in women who were undergoing mammography screening (1,2). Unfortunately the
limited sensitivity and specificity of the screening mammography needs to improve diagnostic
accuracy of mammography. R-CNN has been coined by Ross Girshick and his group at UC
Berkeley as one of the impactful development in techniques convolutional neural networks. The
purpose of R-CNNs is to draw bounding boxes over all of the objects in a given images following
two step training schedules, first classification and then region detection step. Unfortunately R-
CNN and its descendent fast R-CNN were computationally expensive, and extremely slow.
Recently faster R-CNN has been introduced to overcome the somewhat complex training process
that both R-CNN and Fast R-CNN encountered by implementing a classification network using
CNN as the region proposal mechanism for training and prediction steps. This network reduces
the overall training pipeline to just check the final convolutional feature map and produce region
112 Computer Science & Information Technology (CS & IT)
proposals from that. From that stage, the same pipeline as R-CNN is used (ROI pooling, FC, and
then classification and regression heads).In this study, we conduct an experiment using faster R-
CNN to detect breast abnormalities as normal, benign and malignant.
2. MATERIAL & METHODS
The proposed methods has been comprised in following steps:(1) Data preparation and
preprocessing of input images(2) Design and train a faster R-CNN detector,(3) Evaluate Detector
Using Test Set. Overall process of this work has been illustrated in figure 1.
2.1 DATA PREPARATION AND PRE-PROCESSING OF INPUT IMAGES
This study used mammography images from a public dataset of the mini Mammogram Image
Analysis Society (MIAS) (3). This database includes of 332 mammograms in 1024 x 1024 sizes.
It we just used 102 cases which was abnormality (benign or malignant).For the region detector
training we have used Matlab Training Image Labeler app to produce required dataset. All cases
were labeled in malignant, benign, calcification benign and background (figure 1).
Figure 1.Sample labeling data prepared for train faster R-CNN network
Preprocessing step includes region extraction and contrast enhancement. At the next step, the
images contrast was enhanced applying contrast limited adaptive histogram equalization
(CLAHE) techniques. This improves the image contrast especially at over internal breast
structures. Furthermore we have tried to remove redundant information from training images
using texture filters and morphology operators. The effect of preprocessing has been shown on
figure 2. Finally dataset were randomly has been divided into training, testing (respectively 80%
and 20% of the total dataset).
Computer Science & Information Technology (CS & IT)
Figure2: the effect of image preprocessing.
CLAHE algorithm. Also any
2.2 DESIGN AND TRAIN FASTER
The basis of the Faster R-CNN detector is a CNN
design a CNN layer by using Matlab Neural Network Toolboxโ„ข functionality. The type and size
of the training images has been defined by
trade off between spatial detail that a CNN needs to resolv
very high. For detection tasks, the CNN
input size must be similar in size to the smallest object in the data set. In this data set
of [75 75] has been selected.
convolutional, ReLU (rectified linear units), and pooling layers follow
a softmax loss layer and a classification
ReLU with or without pooling layer impose deepness of a CNN.
series of 10 filters of size 7x7x3.
border information too early in the
a stride of 3 pixels) followed the Convolution
shown in table 1.
Table1: Building blocks of faster R
Computer Science & Information Technology (CS & IT)
: the effect of image preprocessing. Contrast of original image (left) has been enhanced using
CLAHE algorithm. Also any redundant information has been removed.
ASTER R-CNN OBJECT DETECTOR
CNN detector is a CNN so called region proposal network
design a CNN layer by using Matlab Neural Network Toolboxโ„ข functionality. The type and size
has been defined by the image Input Layer function. The input size is a
off between spatial detail that a CNN needs to resolve and processing time which would be
For detection tasks, the CNN needs to analyze smaller sections of the image, so the
similar in size to the smallest object in the data set. In this data set
n selected. Building blocks of any CNN is a repeated basic layers
convolutional, ReLU (rectified linear units), and pooling layers follow by fully connected layers,
and a classification. Repeating a consecutive blocks of convolutional and
ReLU with or without pooling layer impose deepness of a CNN. The first convolution
x3. One pixel padding has been used to avoid discards of image
ation too early in the network. A ReLu layer and max pooling layer (size of
pixels) followed the Convolution Layer. The building block of our network has been
able1: Building blocks of faster R-CNN network
113
Contrast of original image (left) has been enhanced using
so called region proposal network. We have
design a CNN layer by using Matlab Neural Network Toolboxโ„ข functionality. The type and size
The input size is a
e and processing time which would be
needs to analyze smaller sections of the image, so the
similar in size to the smallest object in the data set. In this data set an input size
basic layers of
fully connected layers,
Repeating a consecutive blocks of convolutional and
convolution layer has a
pixel padding has been used to avoid discards of image
A ReLu layer and max pooling layer (size of 7x7and
block of our network has been
114 Computer Science & Information Technology (CS & IT)
2.3 EVALUATE DETECTOR USING TEST SET
Matlab Computer Vision System Toolboxโ„ข provides functions for object detector evaluation
which calculate average precision. The average precision is a single number that shows the ability
of the detector to make correct classifications and the ability of the detector to find all relevant
objects (recall).This will be done by running the detector on the test set.
Figure3: Superimposing expected (blue) and detected (yellow) regions on a two malignant case with
correct (right), semi correct (middle) and wrong (left) detection
3. RESULTS & DISCUSSION
We have run the trained detector over the test samples to evaluate the precision and recall
quantities. Since more than one region with different labels has been detected, the closest box to
the original ROI has been selected for evaluation process. If there were more than one closed
detected region with different label, we have used that region which has the same label as the test
data. Figure 3 has shown the resulting images from tree malignant cases. Ideally, the precision
would be 1 at all recall levels. In this study, the average precision is 0.2. The use of more training
data can improve the average precision, at the cost of longer training time.
In some cases despite wrong position detection, there were at least one or more detected
malignant regions in 50 percent of malignant (15 from 16 malignant cases) and no detected
malignant regions in 94 percent of benign cases (15 from 16 benign cases).This can be due to the
similar features in malignant cases and benign cases. The precision/recall (PR) curve highlights
how precise a detector is at varying levels of recall. Ideally, the precision would be 1 at all recall
levels. The use of additional layers in the network can help improve the average precision. But
our results from using deeper network using extra series convolution layer did not improve
detection results since the network was not able to detect any region which may impose extra
Computer Science & Information Technology (CS & IT) 115
layers should be carefully designed and added. We will evaluate this in future applying different
designs other that series networks.
4. CONCLUSION
Deep convolution neural networks have demonstrated the ability to outperform skilled humans in
certain observational tasks (4,5). There are many studies showing reasonable performance of
convolution neural networks on mammography lesion detection but none of them uses faster R-
CNN detectors (6, 7, and 8). General evaluation studies have shown that an CNN network is able
to outperform human performance (9). This study was performed based on Faster R-CNN
detector applying a simple series convolution neural network. Trained detector had reasonable
detection precision with very small training data (102 images) which can be concluded as
REFERENCES
[1] Duffy SW, et al, (2002), "The impact of organized mammography service screening on breast
carcinoma mortality in seven swedish counties, Cancer, Vol. No. 95(3), pp 458โ€“69.
[2] DB, et al, (2002), "Beyond randomized controlled trials: organized mammographic screening
substantially reduces breast carcinoma mortality", Cancer, Vol. 94(2), pp 580
[3] Suckling J, et al, (1994), "The Mammographic Image Analysis Society Digital Mammogram
Database Exerpta Medica", International Congress Series, Vol. 1069, pp 375-378.
[4] Giusti R, Gambardella L, Schmidhuber J, (2012), "Neural networks for segmenting neuronal
structures in EM stacks", ISBI Segmentation Challenge Competition.
[5] HeK, et al. (2015), "Delving deep into rectifiers: Surpassing human-level performance on imagenet
classification", arXiv, 1502.01852,.
[6] Krzysztof J, et al, (2017), "High-Resolution Breast Cancer Screening with Multi-View Deep
Convolutional Neural Networks", arXiv,1703.07047v2
[7] Araujo T, et al. (2017), "Classification of breast cancer histology images using Convolution Neural
Networks", PLoS One, Vol. 12(6), pp e0177544.
[8] Zhang Q, et al, (2017), "Class Mammogram Classification Based on Descriptive CNN Features".
Biomed Res Int", pp 3640901.
[9] Jane H, Anne C, (2017), "Applying Faster R-CNN for Object Detection on Malaria Images", CVPR
workshop. pp 808-813.

More Related Content

What's hot

Classification of Breast Masses Using Convolutional Neural Network as Feature...
Classification of Breast Masses Using Convolutional Neural Network as Feature...Classification of Breast Masses Using Convolutional Neural Network as Feature...
Classification of Breast Masses Using Convolutional Neural Network as Feature...Pinaki Ranjan Sarkar
ย 
COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...
COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...
COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...Shruti Jadon
ย 
IRJET- MRI Image Processing Operations for Brain Tumor Detection
IRJET- MRI Image Processing Operations for Brain Tumor DetectionIRJET- MRI Image Processing Operations for Brain Tumor Detection
IRJET- MRI Image Processing Operations for Brain Tumor DetectionIRJET Journal
ย 
Pneumonia Detection using CNN
Pneumonia Detection using CNNPneumonia Detection using CNN
Pneumonia Detection using CNNYashIyengar
ย 
Master's Thesis
Master's ThesisMaster's Thesis
Master's ThesisYashIyengar
ย 
Design and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using imageDesign and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using imageIAEME Publication
ย 
Comparison of Learning Algorithms for Handwritten Digit Recognition
Comparison of Learning Algorithms for Handwritten Digit RecognitionComparison of Learning Algorithms for Handwritten Digit Recognition
Comparison of Learning Algorithms for Handwritten Digit RecognitionSafaa Alnabulsi
ย 
Early detection of breast cancer using mammography images and software engine...
Early detection of breast cancer using mammography images and software engine...Early detection of breast cancer using mammography images and software engine...
Early detection of breast cancer using mammography images and software engine...TELKOMNIKA JOURNAL
ย 
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Editor IJCATR
ย 
A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...
A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...
A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...Christopher Mehdi Elamri
ย 
Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...
Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...
Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...INFOGAIN PUBLICATION
ย 
IRJET- Brain Tumor Detection using Image Processing and MATLAB Application
IRJET-  	  Brain Tumor Detection using Image Processing and MATLAB ApplicationIRJET-  	  Brain Tumor Detection using Image Processing and MATLAB Application
IRJET- Brain Tumor Detection using Image Processing and MATLAB ApplicationIRJET Journal
ย 
Brain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingBrain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingIRJET Journal
ย 
Brain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI ImagesBrain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI ImagesIJRAT
ย 
Robust Malware Detection using Residual Attention Network
Robust Malware Detection using Residual Attention NetworkRobust Malware Detection using Residual Attention Network
Robust Malware Detection using Residual Attention NetworkShamika Ganesan
ย 

What's hot (19)

Classification of Breast Masses Using Convolutional Neural Network as Feature...
Classification of Breast Masses Using Convolutional Neural Network as Feature...Classification of Breast Masses Using Convolutional Neural Network as Feature...
Classification of Breast Masses Using Convolutional Neural Network as Feature...
ย 
COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...
COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...
COVID-19 detection from scarce chest X-Ray image data using few-shot deep lea...
ย 
IRJET- MRI Image Processing Operations for Brain Tumor Detection
IRJET- MRI Image Processing Operations for Brain Tumor DetectionIRJET- MRI Image Processing Operations for Brain Tumor Detection
IRJET- MRI Image Processing Operations for Brain Tumor Detection
ย 
Ravi
RaviRavi
Ravi
ย 
V01 i010405
V01 i010405V01 i010405
V01 i010405
ย 
Pneumonia Detection using CNN
Pneumonia Detection using CNNPneumonia Detection using CNN
Pneumonia Detection using CNN
ย 
Master's Thesis
Master's ThesisMaster's Thesis
Master's Thesis
ย 
Design and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using imageDesign and development of pulmonary tuberculosis diagnosing system using image
Design and development of pulmonary tuberculosis diagnosing system using image
ย 
Comparison of Learning Algorithms for Handwritten Digit Recognition
Comparison of Learning Algorithms for Handwritten Digit RecognitionComparison of Learning Algorithms for Handwritten Digit Recognition
Comparison of Learning Algorithms for Handwritten Digit Recognition
ย 
Early detection of breast cancer using mammography images and software engine...
Early detection of breast cancer using mammography images and software engine...Early detection of breast cancer using mammography images and software engine...
Early detection of breast cancer using mammography images and software engine...
ย 
An Image Segmentation and Classification for Brain Tumor Detection using Pill...
An Image Segmentation and Classification for Brain Tumor Detection using Pill...An Image Segmentation and Classification for Brain Tumor Detection using Pill...
An Image Segmentation and Classification for Brain Tumor Detection using Pill...
ย 
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
Brain Tumor Detection Using Artificial Neural Network Fuzzy Inference System ...
ย 
A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...
A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...
A New Algorithm for Fully Automatic Brain Tumor Segmentation with 3-D Convolu...
ย 
Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...
Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...
Brain Image Fusion using DWT and Laplacian Pyramid Approach and Tumor Detecti...
ย 
IRJET- Brain Tumor Detection using Image Processing and MATLAB Application
IRJET-  	  Brain Tumor Detection using Image Processing and MATLAB ApplicationIRJET-  	  Brain Tumor Detection using Image Processing and MATLAB Application
IRJET- Brain Tumor Detection using Image Processing and MATLAB Application
ย 
Brain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingBrain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive Boosting
ย 
PNN and inversion-B
PNN and inversion-BPNN and inversion-B
PNN and inversion-B
ย 
Brain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI ImagesBrain Tumor Segmentation in MRI Images
Brain Tumor Segmentation in MRI Images
ย 
Robust Malware Detection using Residual Attention Network
Robust Malware Detection using Residual Attention NetworkRobust Malware Detection using Residual Attention Network
Robust Malware Detection using Residual Attention Network
ย 

Similar to MAMMOGRAPHY LESION DETECTION USING FASTER R-CNN DETECTOR

Applications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer PredictionApplications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer PredictionIRJET Journal
ย 
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...IRJET Journal
ย 
BLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATION
BLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATIONBLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATION
BLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATIONIRJET Journal
ย 
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdfresearchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdfAvijitChaudhuri3
ย 
Plant Disease Detection using Convolution Neural Network (CNN)
Plant Disease Detection using Convolution Neural Network (CNN)Plant Disease Detection using Convolution Neural Network (CNN)
Plant Disease Detection using Convolution Neural Network (CNN)IRJET Journal
ย 
Reconfiguration layers of convolutional neural network for fundus patches cla...
Reconfiguration layers of convolutional neural network for fundus patches cla...Reconfiguration layers of convolutional neural network for fundus patches cla...
Reconfiguration layers of convolutional neural network for fundus patches cla...journalBEEI
ย 
Application of Target Detection Algorithm based on Deep Learning in Farmland ...
Application of Target Detection Algorithm based on Deep Learning in Farmland ...Application of Target Detection Algorithm based on Deep Learning in Farmland ...
Application of Target Detection Algorithm based on Deep Learning in Farmland ...gerogepatton
ย 
Mask RCNN on brain tumor.pptx
Mask RCNN on brain tumor.pptxMask RCNN on brain tumor.pptx
Mask RCNN on brain tumor.pptxDanishKhan643986
ย 
Lung Cancer Detection Using Convolutional Neural Network
Lung Cancer Detection Using Convolutional Neural NetworkLung Cancer Detection Using Convolutional Neural Network
Lung Cancer Detection Using Convolutional Neural NetworkIRJET Journal
ย 
Breast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural NetworkBreast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural NetworkIRJET Journal
ย 
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...gerogepatton
ย 
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...ijaia
ย 
Sparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image ProcessingSparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image ProcessingEswar Publications
ย 
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...rinzindorjej
ย 
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...rinzindorjej
ย 
AGE AND GENDER DETECTION.pptx
AGE AND GENDER DETECTION.pptxAGE AND GENDER DETECTION.pptx
AGE AND GENDER DETECTION.pptxssuserb4a9ba
ย 
ageandgenderdetection-220802061020-9ee5a2cd.pptx
ageandgenderdetection-220802061020-9ee5a2cd.pptxageandgenderdetection-220802061020-9ee5a2cd.pptx
ageandgenderdetection-220802061020-9ee5a2cd.pptxdhaliwalharsh055
ย 
Backbone search for object detection for applications in intrusion warning sy...
Backbone search for object detection for applications in intrusion warning sy...Backbone search for object detection for applications in intrusion warning sy...
Backbone search for object detection for applications in intrusion warning sy...IAESIJAI
ย 

Similar to MAMMOGRAPHY LESION DETECTION USING FASTER R-CNN DETECTOR (20)

Applications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer PredictionApplications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer Prediction
ย 
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
Performance Comparison Analysis for Medical Images Using Deep Learning Approa...
ย 
BLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATION
BLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATIONBLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATION
BLOOD TISSUE IMAGE TO IDENTIFY MALARIA DISEASE CLASSIFICATION
ย 
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdfresearchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
researchpaper_2023_Skin_Csdbjsjvnvsdnfvancer.pdf
ย 
Plant Disease Detection using Convolution Neural Network (CNN)
Plant Disease Detection using Convolution Neural Network (CNN)Plant Disease Detection using Convolution Neural Network (CNN)
Plant Disease Detection using Convolution Neural Network (CNN)
ย 
Reconfiguration layers of convolutional neural network for fundus patches cla...
Reconfiguration layers of convolutional neural network for fundus patches cla...Reconfiguration layers of convolutional neural network for fundus patches cla...
Reconfiguration layers of convolutional neural network for fundus patches cla...
ย 
Application of Target Detection Algorithm based on Deep Learning in Farmland ...
Application of Target Detection Algorithm based on Deep Learning in Farmland ...Application of Target Detection Algorithm based on Deep Learning in Farmland ...
Application of Target Detection Algorithm based on Deep Learning in Farmland ...
ย 
Mask RCNN on brain tumor.pptx
Mask RCNN on brain tumor.pptxMask RCNN on brain tumor.pptx
Mask RCNN on brain tumor.pptx
ย 
Lung Cancer Detection Using Convolutional Neural Network
Lung Cancer Detection Using Convolutional Neural NetworkLung Cancer Detection Using Convolutional Neural Network
Lung Cancer Detection Using Convolutional Neural Network
ย 
Breast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural NetworkBreast Cancer Detection using Convolution Neural Network
Breast Cancer Detection using Convolution Neural Network
ย 
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
ย 
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
APPLICATION OF TARGET DETECTION ALGORITHM BASED ON DEEP LEARNING IN FARMLAND ...
ย 
Sparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image ProcessingSparse Sampling in Digital Image Processing
Sparse Sampling in Digital Image Processing
ย 
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
ย 
6119ijcsitce01
6119ijcsitce016119ijcsitce01
6119ijcsitce01
ย 
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
CONTRAST OF RESNET AND DENSENET BASED ON THE RECOGNITION OF SIMPLE FRUIT DATA...
ย 
AGE AND GENDER DETECTION.pptx
AGE AND GENDER DETECTION.pptxAGE AND GENDER DETECTION.pptx
AGE AND GENDER DETECTION.pptx
ย 
ageandgenderdetection-220802061020-9ee5a2cd.pptx
ageandgenderdetection-220802061020-9ee5a2cd.pptxageandgenderdetection-220802061020-9ee5a2cd.pptx
ageandgenderdetection-220802061020-9ee5a2cd.pptx
ย 
F017533540
F017533540F017533540
F017533540
ย 
Backbone search for object detection for applications in intrusion warning sy...
Backbone search for object detection for applications in intrusion warning sy...Backbone search for object detection for applications in intrusion warning sy...
Backbone search for object detection for applications in intrusion warning sy...
ย 

More from cscpconf

ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR cscpconf
ย 
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATIONcscpconf
ย 
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...cscpconf
ย 
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIESPROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIEScscpconf
ย 
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICA SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICcscpconf
ย 
DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS cscpconf
ย 
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS cscpconf
ย 
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICTWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICcscpconf
ย 
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINDETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINcscpconf
ย 
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...cscpconf
ย 
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMIMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMcscpconf
ย 
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...cscpconf
ย 
AUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWAUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWcscpconf
ย 
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKCLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKcscpconf
ย 
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...cscpconf
ย 
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAPROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAcscpconf
ย 
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHCHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHcscpconf
ย 
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...cscpconf
ย 
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGESOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGEcscpconf
ย 
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTGENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTcscpconf
ย 

More from cscpconf (20)

ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ANALYSIS OF LAND SURFACE DEFORMATION GRADIENT BY DINSAR
ย 
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
4D AUTOMATIC LIP-READING FOR SPEAKER'S FACE IDENTIFCATION
ย 
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
MOVING FROM WATERFALL TO AGILE PROCESS IN SOFTWARE ENGINEERING CAPSTONE PROJE...
ย 
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIESPROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
PROMOTING STUDENT ENGAGEMENT USING SOCIAL MEDIA TECHNOLOGIES
ย 
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGICA SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
A SURVEY ON QUESTION ANSWERING SYSTEMS: THE ADVANCES OF FUZZY LOGIC
ย 
DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
DYNAMIC PHONE WARPING โ€“ A METHOD TO MEASURE THE DISTANCE BETWEEN PRONUNCIATIONS
ย 
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
INTELLIGENT ELECTRONIC ASSESSMENT FOR SUBJECTIVE EXAMS
ย 
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTICTWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
TWO DISCRETE BINARY VERSIONS OF AFRICAN BUFFALO OPTIMIZATION METAHEURISTIC
ย 
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAINDETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
DETECTION OF ALGORITHMICALLY GENERATED MALICIOUS DOMAIN
ย 
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
GLOBAL MUSIC ASSET ASSURANCE DIGITAL CURRENCY: A DRM SOLUTION FOR STREAMING C...
ย 
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEMIMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
IMPORTANCE OF VERB SUFFIX MAPPING IN DISCOURSE TRANSLATION SYSTEM
ย 
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
EXACT SOLUTIONS OF A FAMILY OF HIGHER-DIMENSIONAL SPACE-TIME FRACTIONAL KDV-T...
ย 
AUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEWAUTOMATED PENETRATION TESTING: AN OVERVIEW
AUTOMATED PENETRATION TESTING: AN OVERVIEW
ย 
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORKCLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
CLASSIFICATION OF ALZHEIMER USING fMRI DATA AND BRAIN NETWORK
ย 
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
VALIDATION METHOD OF FUZZY ASSOCIATION RULES BASED ON FUZZY FORMAL CONCEPT AN...
ย 
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATAPROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
PROBABILITY BASED CLUSTER EXPANSION OVERSAMPLING TECHNIQUE FOR IMBALANCED DATA
ย 
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCHCHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
CHARACTER AND IMAGE RECOGNITION FOR DATA CATALOGING IN ECOLOGICAL RESEARCH
ย 
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
SOCIAL MEDIA ANALYTICS FOR SENTIMENT ANALYSIS AND EVENT DETECTION IN SMART CI...
ย 
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGESOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
SOCIAL NETWORK HATE SPEECH DETECTION FOR AMHARIC LANGUAGE
ย 
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXTGENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
GENERAL REGRESSION NEURAL NETWORK BASED POS TAGGING FOR NEPALI TEXT
ย 

Recently uploaded

Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...
Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...
Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...batoole333
ย 
Test bank for advanced assessment interpreting findings and formulating diffe...
Test bank for advanced assessment interpreting findings and formulating diffe...Test bank for advanced assessment interpreting findings and formulating diffe...
Test bank for advanced assessment interpreting findings and formulating diffe...robinsonayot
ย 
fundamentals of corporate finance 11th canadian edition test bank.docx
fundamentals of corporate finance 11th canadian edition test bank.docxfundamentals of corporate finance 11th canadian edition test bank.docx
fundamentals of corporate finance 11th canadian edition test bank.docxssuserf63bd7
ย 
Technology industry / Finnish economic outlook
Technology industry / Finnish economic outlookTechnology industry / Finnish economic outlook
Technology industry / Finnish economic outlookTechFinland
ย 
MASTERING FOREX: STRATEGIES FOR SUCCESS.pdf
MASTERING FOREX: STRATEGIES FOR SUCCESS.pdfMASTERING FOREX: STRATEGIES FOR SUCCESS.pdf
MASTERING FOREX: STRATEGIES FOR SUCCESS.pdfCocity Enterprises
ย 
Call Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budget
Call Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budgetCall Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budget
Call Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budgetSareena Khatun
ย 
abortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammam
abortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammamabortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammam
abortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammamsamsungultra782445
ย 
Responsible Finance Principles and Implication
Responsible Finance Principles and ImplicationResponsible Finance Principles and Implication
Responsible Finance Principles and ImplicationNghiaPham100
ย 
Bhubaneswar๐ŸŒนRavi Tailkes โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...
Bhubaneswar๐ŸŒนRavi Tailkes  โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...Bhubaneswar๐ŸŒนRavi Tailkes  โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...
Bhubaneswar๐ŸŒนRavi Tailkes โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...Call Girls Mumbai
ย 
20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...
20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...
20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...Henry Tapper
ย 
falcon-invoice-discounting-unlocking-prime-investment-opportunities
falcon-invoice-discounting-unlocking-prime-investment-opportunitiesfalcon-invoice-discounting-unlocking-prime-investment-opportunities
falcon-invoice-discounting-unlocking-prime-investment-opportunitiesFalcon Invoice Discounting
ย 
Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...
Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...
Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...janibaber266
ย 
+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...
+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...
+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...Health
ย 
7 tips trading Deriv Accumulator Options
7 tips trading Deriv Accumulator Options7 tips trading Deriv Accumulator Options
7 tips trading Deriv Accumulator OptionsVince Stanzione
ย 
Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...
Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...
Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...kajalverma014
ย 
Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...
Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...
Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...mazhshah570
ย 
Group 8 - Goldman Sachs & 1MDB Case Studies
Group 8 - Goldman Sachs & 1MDB Case StudiesGroup 8 - Goldman Sachs & 1MDB Case Studies
Group 8 - Goldman Sachs & 1MDB Case StudiesNghiaPham100
ย 
Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...
Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...
Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...globusfinanza
ย 
cost-volume-profit analysis.ppt(managerial accounting).pptx
cost-volume-profit analysis.ppt(managerial accounting).pptxcost-volume-profit analysis.ppt(managerial accounting).pptx
cost-volume-profit analysis.ppt(managerial accounting).pptxazadalisthp2020i
ย 
abortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadh
abortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadhabortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadh
abortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadhsamsungultra782445
ย 

Recently uploaded (20)

Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...
Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...
Certified Kala Jadu, Black magic specialist in Rawalpindi and Bangali Amil ba...
ย 
Test bank for advanced assessment interpreting findings and formulating diffe...
Test bank for advanced assessment interpreting findings and formulating diffe...Test bank for advanced assessment interpreting findings and formulating diffe...
Test bank for advanced assessment interpreting findings and formulating diffe...
ย 
fundamentals of corporate finance 11th canadian edition test bank.docx
fundamentals of corporate finance 11th canadian edition test bank.docxfundamentals of corporate finance 11th canadian edition test bank.docx
fundamentals of corporate finance 11th canadian edition test bank.docx
ย 
Technology industry / Finnish economic outlook
Technology industry / Finnish economic outlookTechnology industry / Finnish economic outlook
Technology industry / Finnish economic outlook
ย 
MASTERING FOREX: STRATEGIES FOR SUCCESS.pdf
MASTERING FOREX: STRATEGIES FOR SUCCESS.pdfMASTERING FOREX: STRATEGIES FOR SUCCESS.pdf
MASTERING FOREX: STRATEGIES FOR SUCCESS.pdf
ย 
Call Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budget
Call Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budgetCall Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budget
Call Girls Howrah ( 8250092165 ) Cheap rates call girls | Get low budget
ย 
abortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammam
abortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammamabortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammam
abortion pills in Riyadh Saudi Arabia (+919707899604)cytotec pills in dammam
ย 
Responsible Finance Principles and Implication
Responsible Finance Principles and ImplicationResponsible Finance Principles and Implication
Responsible Finance Principles and Implication
ย 
Bhubaneswar๐ŸŒนRavi Tailkes โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...
Bhubaneswar๐ŸŒนRavi Tailkes  โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...Bhubaneswar๐ŸŒนRavi Tailkes  โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...
Bhubaneswar๐ŸŒนRavi Tailkes โคCALL GIRLS 9777949614 ๐Ÿ’Ÿ CALL GIRLS IN bhubaneswar ...
ย 
20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...
20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...
20240419-SMC-submission-Annual-Superannuation-Performance-Test-โ€“-design-optio...
ย 
falcon-invoice-discounting-unlocking-prime-investment-opportunities
falcon-invoice-discounting-unlocking-prime-investment-opportunitiesfalcon-invoice-discounting-unlocking-prime-investment-opportunities
falcon-invoice-discounting-unlocking-prime-investment-opportunities
ย 
Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...
Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...
Famous No1 Amil Baba Love marriage Astrologer Specialist Expert In Pakistan a...
ย 
+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...
+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...
+97470301568>>buy weed in qatar,buy thc oil in qatar doha>>buy cannabis oil i...
ย 
7 tips trading Deriv Accumulator Options
7 tips trading Deriv Accumulator Options7 tips trading Deriv Accumulator Options
7 tips trading Deriv Accumulator Options
ย 
Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...
Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...
Female Escorts Service in Hyderabad Starting with 5000/- for Savita Escorts S...
ย 
Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...
Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...
Famous Kala Jadu, Kala ilam specialist in USA and Bangali Amil baba in Saudi ...
ย 
Group 8 - Goldman Sachs & 1MDB Case Studies
Group 8 - Goldman Sachs & 1MDB Case StudiesGroup 8 - Goldman Sachs & 1MDB Case Studies
Group 8 - Goldman Sachs & 1MDB Case Studies
ย 
Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...
Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...
Avoidable Errors in Payroll Compliance for Payroll Services Providers - Globu...
ย 
cost-volume-profit analysis.ppt(managerial accounting).pptx
cost-volume-profit analysis.ppt(managerial accounting).pptxcost-volume-profit analysis.ppt(managerial accounting).pptx
cost-volume-profit analysis.ppt(managerial accounting).pptx
ย 
abortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadh
abortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadhabortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadh
abortion pills in Jeddah Saudi Arabia (+919707899604)cytotec pills in Riyadh
ย 

MAMMOGRAPHY LESION DETECTION USING FASTER R-CNN DETECTOR

  • 1. Natarajan Meghanathan et al. (Eds) : NLP, JSE, CST, SIP, ARIA - 2018 pp. 111โ€“ 115, 2018. ยฉ CS & IT-CSCP 2018 DOI : 10.5121/csit.2018.80212 MAMMOGRAPHY LESION DETECTION USING FASTER R-CNN DETECTOR Reza Reiazi1 , Reza Paydar2 , Ali Abbasian Ardakani3 , Maryam Etedadialiabadi4 1,3 Department of Medical Physics, School of Medicine, Iran University of Medical Sciences, Tehran, Iran 2 Department of Diagnostic Radiology, School of Allied science, Iran University of Medical Sciences, Tehran, Iran 4 Department of Radiology, Milad Hospital, Tehran, Iran ABSTRACT Recently availability of large scale mammography databases enable researchers to evaluates advanced tumor detections applying deep convolution networks (DCN) to mammography images which is one of the common used imaging modalities for early breast cancer. With the recent advance of deep learning, the performance of tumor detection has been developed by a great extent, especially using R-CNNs or Region convolution neural networks. This study evaluates the performance of a simple faster R-CNN detector for mammography lesion detection using a MIAS databases. KEYWORDS Mammography, Convolution Neural Network, R-CNN, lesion 1. INTRODUCTION Breast cancer is one of the most common causes of death for women in many countries. In general, early detection is very important for cancer treatment and can decrease the mortality rate in a grate extent. One of the common used imaging modalities for early breast cancer detection is mammography in which an abnormality can be categorized as either normal, non-cancerous (benign) or cancerous (malignant).Studies have shown that Mammography can reduce30% of mortality in women who were undergoing mammography screening (1,2). Unfortunately the limited sensitivity and specificity of the screening mammography needs to improve diagnostic accuracy of mammography. R-CNN has been coined by Ross Girshick and his group at UC Berkeley as one of the impactful development in techniques convolutional neural networks. The purpose of R-CNNs is to draw bounding boxes over all of the objects in a given images following two step training schedules, first classification and then region detection step. Unfortunately R- CNN and its descendent fast R-CNN were computationally expensive, and extremely slow. Recently faster R-CNN has been introduced to overcome the somewhat complex training process that both R-CNN and Fast R-CNN encountered by implementing a classification network using CNN as the region proposal mechanism for training and prediction steps. This network reduces the overall training pipeline to just check the final convolutional feature map and produce region
  • 2. 112 Computer Science & Information Technology (CS & IT) proposals from that. From that stage, the same pipeline as R-CNN is used (ROI pooling, FC, and then classification and regression heads).In this study, we conduct an experiment using faster R- CNN to detect breast abnormalities as normal, benign and malignant. 2. MATERIAL & METHODS The proposed methods has been comprised in following steps:(1) Data preparation and preprocessing of input images(2) Design and train a faster R-CNN detector,(3) Evaluate Detector Using Test Set. Overall process of this work has been illustrated in figure 1. 2.1 DATA PREPARATION AND PRE-PROCESSING OF INPUT IMAGES This study used mammography images from a public dataset of the mini Mammogram Image Analysis Society (MIAS) (3). This database includes of 332 mammograms in 1024 x 1024 sizes. It we just used 102 cases which was abnormality (benign or malignant).For the region detector training we have used Matlab Training Image Labeler app to produce required dataset. All cases were labeled in malignant, benign, calcification benign and background (figure 1). Figure 1.Sample labeling data prepared for train faster R-CNN network Preprocessing step includes region extraction and contrast enhancement. At the next step, the images contrast was enhanced applying contrast limited adaptive histogram equalization (CLAHE) techniques. This improves the image contrast especially at over internal breast structures. Furthermore we have tried to remove redundant information from training images using texture filters and morphology operators. The effect of preprocessing has been shown on figure 2. Finally dataset were randomly has been divided into training, testing (respectively 80% and 20% of the total dataset).
  • 3. Computer Science & Information Technology (CS & IT) Figure2: the effect of image preprocessing. CLAHE algorithm. Also any 2.2 DESIGN AND TRAIN FASTER The basis of the Faster R-CNN detector is a CNN design a CNN layer by using Matlab Neural Network Toolboxโ„ข functionality. The type and size of the training images has been defined by trade off between spatial detail that a CNN needs to resolv very high. For detection tasks, the CNN input size must be similar in size to the smallest object in the data set. In this data set of [75 75] has been selected. convolutional, ReLU (rectified linear units), and pooling layers follow a softmax loss layer and a classification ReLU with or without pooling layer impose deepness of a CNN. series of 10 filters of size 7x7x3. border information too early in the a stride of 3 pixels) followed the Convolution shown in table 1. Table1: Building blocks of faster R Computer Science & Information Technology (CS & IT) : the effect of image preprocessing. Contrast of original image (left) has been enhanced using CLAHE algorithm. Also any redundant information has been removed. ASTER R-CNN OBJECT DETECTOR CNN detector is a CNN so called region proposal network design a CNN layer by using Matlab Neural Network Toolboxโ„ข functionality. The type and size has been defined by the image Input Layer function. The input size is a off between spatial detail that a CNN needs to resolve and processing time which would be For detection tasks, the CNN needs to analyze smaller sections of the image, so the similar in size to the smallest object in the data set. In this data set n selected. Building blocks of any CNN is a repeated basic layers convolutional, ReLU (rectified linear units), and pooling layers follow by fully connected layers, and a classification. Repeating a consecutive blocks of convolutional and ReLU with or without pooling layer impose deepness of a CNN. The first convolution x3. One pixel padding has been used to avoid discards of image ation too early in the network. A ReLu layer and max pooling layer (size of pixels) followed the Convolution Layer. The building block of our network has been able1: Building blocks of faster R-CNN network 113 Contrast of original image (left) has been enhanced using so called region proposal network. We have design a CNN layer by using Matlab Neural Network Toolboxโ„ข functionality. The type and size The input size is a e and processing time which would be needs to analyze smaller sections of the image, so the similar in size to the smallest object in the data set. In this data set an input size basic layers of fully connected layers, Repeating a consecutive blocks of convolutional and convolution layer has a pixel padding has been used to avoid discards of image A ReLu layer and max pooling layer (size of 7x7and block of our network has been
  • 4. 114 Computer Science & Information Technology (CS & IT) 2.3 EVALUATE DETECTOR USING TEST SET Matlab Computer Vision System Toolboxโ„ข provides functions for object detector evaluation which calculate average precision. The average precision is a single number that shows the ability of the detector to make correct classifications and the ability of the detector to find all relevant objects (recall).This will be done by running the detector on the test set. Figure3: Superimposing expected (blue) and detected (yellow) regions on a two malignant case with correct (right), semi correct (middle) and wrong (left) detection 3. RESULTS & DISCUSSION We have run the trained detector over the test samples to evaluate the precision and recall quantities. Since more than one region with different labels has been detected, the closest box to the original ROI has been selected for evaluation process. If there were more than one closed detected region with different label, we have used that region which has the same label as the test data. Figure 3 has shown the resulting images from tree malignant cases. Ideally, the precision would be 1 at all recall levels. In this study, the average precision is 0.2. The use of more training data can improve the average precision, at the cost of longer training time. In some cases despite wrong position detection, there were at least one or more detected malignant regions in 50 percent of malignant (15 from 16 malignant cases) and no detected malignant regions in 94 percent of benign cases (15 from 16 benign cases).This can be due to the similar features in malignant cases and benign cases. The precision/recall (PR) curve highlights how precise a detector is at varying levels of recall. Ideally, the precision would be 1 at all recall levels. The use of additional layers in the network can help improve the average precision. But our results from using deeper network using extra series convolution layer did not improve detection results since the network was not able to detect any region which may impose extra
  • 5. Computer Science & Information Technology (CS & IT) 115 layers should be carefully designed and added. We will evaluate this in future applying different designs other that series networks. 4. CONCLUSION Deep convolution neural networks have demonstrated the ability to outperform skilled humans in certain observational tasks (4,5). There are many studies showing reasonable performance of convolution neural networks on mammography lesion detection but none of them uses faster R- CNN detectors (6, 7, and 8). General evaluation studies have shown that an CNN network is able to outperform human performance (9). This study was performed based on Faster R-CNN detector applying a simple series convolution neural network. Trained detector had reasonable detection precision with very small training data (102 images) which can be concluded as REFERENCES [1] Duffy SW, et al, (2002), "The impact of organized mammography service screening on breast carcinoma mortality in seven swedish counties, Cancer, Vol. No. 95(3), pp 458โ€“69. [2] DB, et al, (2002), "Beyond randomized controlled trials: organized mammographic screening substantially reduces breast carcinoma mortality", Cancer, Vol. 94(2), pp 580 [3] Suckling J, et al, (1994), "The Mammographic Image Analysis Society Digital Mammogram Database Exerpta Medica", International Congress Series, Vol. 1069, pp 375-378. [4] Giusti R, Gambardella L, Schmidhuber J, (2012), "Neural networks for segmenting neuronal structures in EM stacks", ISBI Segmentation Challenge Competition. [5] HeK, et al. (2015), "Delving deep into rectifiers: Surpassing human-level performance on imagenet classification", arXiv, 1502.01852,. [6] Krzysztof J, et al, (2017), "High-Resolution Breast Cancer Screening with Multi-View Deep Convolutional Neural Networks", arXiv,1703.07047v2 [7] Araujo T, et al. (2017), "Classification of breast cancer histology images using Convolution Neural Networks", PLoS One, Vol. 12(6), pp e0177544. [8] Zhang Q, et al, (2017), "Class Mammogram Classification Based on Descriptive CNN Features". Biomed Res Int", pp 3640901. [9] Jane H, Anne C, (2017), "Applying Faster R-CNN for Object Detection on Malaria Images", CVPR workshop. pp 808-813.