SlideShare una empresa de Scribd logo
1 de 4
Descargar para leer sin conexión
International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS)
Volume VI, Issue IV, April 2017 | ISSN 2278-2540
www.ijltemas.in Page 42
Automatic Leukemia Detection Using Image
Processing Technique
Tathagata Hazra1
, Mrinal Kumar2
, Dr. Sanjaya Shankar Tripathy3
1, 2
ME Student, Department of ECE, BIT Mesra.
3
Assistant Professor, Department of ECE, BIT Mesra
Abstract: This paper is about the proposal of automated leukemia
detection approach. In a manual method trained physician count
WBC to detect leukemia from the images taken from the
microscope. This manual counting process is time taking and not
that much accurate because it completely depends on the
physician’s skill. To overcome these drawbacks an automated
technique of detecting leukemia is developed. This technique
involves some filtering techniques and k-mean clustering
approach for image preprocessing and segmentation purpose
respectively. After that an automated counting algorithm is used
to count WBC to detect leukemia. Some features like area,
perimeter, mean, centroid, solidity, smoothness, skewness,
energy, entropy, homogeneity, standard deviation etc. are
extracted and calculated. After that neural network methodology
is used to know directly whether the image has cancer effected
cell or not. This proposed method has achieved an accuracy of
90%.
Key words: MATLAB code, segmentation, WBC detection,
leukemia detection.
I. INTRODUCTION
eukemia is generated from the bone marrow. It can be
cause of death if treatment is not started at right time. A
thin material is situated inside each bone which is known as
bone marrow shown in the fig. 1.Every human body has
mainly three type of blood cells:-RBC(red blood
cell),WBC(white blood cell),PLT(platelets).In this paper main
point of concern is to detect leukemia. So we are only
concentrating on the count of WBC(leucocytes).There are
two type of stem cell, myeloid and lymphoid stem cell which
are shown in the fig.2.Myeloid stem cell emerges into myeloid
blast. This myeloid blast is the reason for generating of
RBC(erythrocytes),WBC(leucocytes) and platelets. Lymphoid
stem cell also enduces lymphoid blast which will generate
only the white blood cell(WBC).Bone marrow produces
abnormal white blood cells(WBCs).These abnormal cells
should die after some time but in reality they do not die and
they become numerous in count. The normal white blood cells
are interrupted by those abnormal white blood cells in doing
their normal work. And this type of situation is named as
disease like „Leukemia‟. Leukemia can be classified into
Chronic and Acute leukemia.
Chronic Leukemia:-Abnormal white blood cells perform like
normal white blood cells and they will increase gradually.
Acute Leukemia:-Abnormal white blood cells do not perform
like normal cells and they will increase rapidly in number.
Fig.1
Fig.2
L
International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS)
Volume VI, Issue IV, April 2017 | ISSN 2278-2540
www.ijltemas.in Page 43
II. PROPOSED METHOD
The Proposed method to detect Leukemia automatically from
the microscopic image is shown below.
Image Acquisition:
In this part a good quality of images are taken by microscopic
setup.
Image Pre-Processing:
The images which are taken may have some noise, blurriness
etc. In this part of image processing we are trying to remove
those unnecessary things for making the images more suitable
for the next step of computational process. Pre-processing
techniques usually include enhancing contrast, removing
noise, isolating regions etc. The median filtering technique is
used here to remove noise. And for removing blurriness from
the image wiener filter is used.
Image Segmentation:
This is one of the most important part in the image processing
technique. To identify and count white blood cells separation
from the other cells are very much important. Through
segmentation separation is done. Segmentation can be done in
many way but we are using here the K-means clustering
technique for segmentation. Here K-means clustering gives
the best result because WBCs are well separated from the
other cells in blood sample image. When the images are
converted into gray scale images the WBCs are become the
darkest region of the images. After that we are applying
histogram equalization and Zack algorithm for grouping of
white blood cells.
Grouped Cells Identification:
Some blood images have some adjacent cells. It is really
difficult to extract some features if the cells are grouped and
not well separated. The feature like area are very difficult to
extract if the nucleus of the cells are joined together. So our
duty is to separate well these cells before studying them
further. Some methods are exist to separate those grouped
cells. Roundness measurement technique is used here. We are
using this technique because we can identify the grouped cells
easily by only analyzing the shape of them. Roundness will
check whether the shape of the cell is circular or not.
Roundness can be extracted by using an equation which is
given below:-
=
The theoretical value of the roundness is 1 for circular objects
and less than 1 for non circular objects. But practically after
some experiments it is found that 0.9 can be used as threshold
value to distinguish single and grouped cells. The objects
having the value more than the threshold value are treated as
single cells and objects having the value less than the
threshold value are treated as grouped cells.
Image Cleaning:
In this part WBCs which are on the edge of the image are
removed to get better result.
WBC Count:
In this part WBCs are counted automatically. There some
algorithms exist to count WBCs in an automatic way. We are
using shape based feature technique algorithm to count
WBCs. We get some idea from the Viola-Jones object
detection algorithm to detect and count WBCs.
Feature Extraction:
In this part some features are extracted from the processed
image. In this phase we are trying to find out the features of
the nucleus of the leucocytes(WBCs).Feature extraction is the
process of collecting some data from the image so that we can
check these values of data with the standard value so that we
can differentiate easily that the image has cancerous cells or
not. Some of the necessary features which are to be calculated
are given below:-
International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS)
Volume VI, Issue IV, April 2017 | ISSN 2278-2540
www.ijltemas.in Page 44
Geometric Features:-
Area,perimeter,centroid,eccentricity,compactness,convexity,
concavity,rectangularuty,elongation,solidity etc.
Texture Features:-
energy, entropy, homogeneity, correlation etc.
Statistical Features:-
Mean, variance, standard-deviation, skewness etc.
Rectangularity is tells about the bounding box fitness.
Convexity is nothing but the difference between the object
from its convex object. The ratio of area of an object and area
of the circle with same perimeter is called as compactness.
The ratio of area and the convex area of each object is named
as solidity. Actually solidity is used to remove the object from
the image which has irregular boundaries. If the value of
solidity is 1 then we can say that the object has regular surface
and if the solidity value is less than 1 then the object does not
have regular boundaries. But after a lot of experiments we can
set the threshold value of solidity as 0.85. So the object in the
image having the value less than that is removed.
Image Classification:
All the features are calculated and extracted are listed in a
column with their values. We will get a matrix called feature
extracted matrix. The image to be tested called as test image.
The values of the test image features are checked with the
previously calculated values based on the values of the input
test image while the SVM classifier will classify that whether
the test image has infected cell or not. We are also using
PNN(probabilistic neural network) with the extracted feature
matrix to know whether the cell is infected or not.
III. EXPERIMENTAL RESULTS
The proposed system gives the below images as result.
International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS)
Volume VI, Issue IV, April 2017 | ISSN 2278-2540
www.ijltemas.in Page 45
The image which is tested in proposed method is called as
input blood image shown in the fig(a).After that image pre-
processing is done that means noise reduction, contrast
enhancement, edge cleaning etc. are done and then convert the
image into the gray scale image. After that the proposed
system converts the gray image into the cluster index image
which is shown in the fig(b).After that k-means clustering
algorithm is used to extract three cluster from the image
which are background, red blood cell cluster, white blood cell
cluster. Background cluster image is shown in the fig(c).Red
blood cell cluster image is shown in the fig(d).And the most
important one for our study white blood cell cluster is shown
in the fig(e).
IMAGE
MANUAL
COUNT
AUTOMATIC
COUNT
ACCURACY
Image1 4 4 100%
Image2 6 6 100%
Image3 8 7 87.5%
Image4 3 3 100%
Image5 5 5 100%
Image6 4 4 100%
Image7 9 8 88.8%
Image8 11 10 90.9%
Image9 15 12 80%
Table1-The proposed system performance for WBC detection.
Results of 9 images are given here. But we have done
observations on lot of images which is nearly about a slide.
After a lot of experiments we have achieved an accuracy of
94.11%.
IV. CONCLUSION
In this paper the main point of concern is automatic counting
of WBCs to detect leukemia automatically from the image
which is taken from the microscope. The manual counting
process to detect leukemia is very much time taking and gives
inaccurate result also. So to save lives this automated
proposed method is very important. Actually in two ways we
can detect leukemia. one is by automatic counting and on the
other way SVM classifier will tell automatically whether the
image has leukemia effected cells or not. For the first one
after segmentation counting algorithm is used to count
automatically. And for the second one some features are
extracted to form a feature matrix to compare with the
standard values. We have achieved an accuracy of almost
94.11% using this proposed method of counting.
REFERENCES
[1]. H. Ramoser, V. Laurain, H. Bischof and R. Ecker, "Leukocyte
segmentation and classification in blood-smear images," in IEEE
Engineering in Medicine and Biology, Shanghai, 2005.
[2]. G. Lebrun, C. Charrier, “A fast and efficient segmentation scheme
for cell microscopic image,” in Cellular and Molecular Biology
TM 53, N°2, 51-61, 2007 .
[3]. Marco Antonio Garcia de Carvalho ,Tiago William Pinto, Roberto
Marcondes C´esar J´unior,” Image Segmentation Using Watershed
and Normalized Cut”.
[4]. G. Ongun, U. Halici, K. Leblebicioglu and V. Atala, "An
automated differential blood count system," in Int. Conf. of the
IEEE Engineering in Medicine and Biology Society, 2001,
Istanbul.
[5]. Mohapatra, Saurav, Dipti Patra, Sudhakar Kumar, and Siddhartha
Satpathi. "Kernel induced rough c-means clustering for
lymphocyte image segmentation." In Intelligent Human Computer
Interaction (IHCI), 2012 4th International Conference on, pp. 1-6.
IEEE, 2012 .
[6]. Raje, Chaitali, and Jyoti Rangole. "Detection of Leukemia in
microscopic images using image processing." In Communications
and Signal Processing (ICCSP), 2014 International Conference
on, pp. 255-259. IEEE, 2014.
[7]. Berge, Heidi, Dale Taylor, Sriram Krishnan, and Tania S.
Douglas. "Improved red blood cell counting in thin blood smears."
In Biomedical Imaging: From Nano to Macro, 2011 IEEE
International Symposium on, pp. 204-207.
[8]. Abdul Nasir, A. S., M. Y. Mashor, and H. Rosline. "Unsupervised
colour segmentation of white blood cell for acute leukaemia
images." In Imaging Systems and Techniques (IST), 2011 IEEE
International Conference on, pp. 142-145. IEEE, 2011.

Más contenido relacionado

La actualidad más candente

imageprocessing-abstract
imageprocessing-abstractimageprocessing-abstract
imageprocessing-abstract
Jagadeesh Kumar
 

La actualidad más candente (20)

Chapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woodsChapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woods
 
Arm instruction set
Arm instruction setArm instruction set
Arm instruction set
 
Introduction to image processing-Class Notes
Introduction to image processing-Class NotesIntroduction to image processing-Class Notes
Introduction to image processing-Class Notes
 
Jpeg standards
Jpeg   standardsJpeg   standards
Jpeg standards
 
Image Sensor PPT
Image Sensor PPTImage Sensor PPT
Image Sensor PPT
 
Region based segmentation
Region based segmentationRegion based segmentation
Region based segmentation
 
Fourier descriptors & moments
Fourier descriptors & momentsFourier descriptors & moments
Fourier descriptors & moments
 
COM2304: Digital Image Fundamentals - I
COM2304: Digital Image Fundamentals - I COM2304: Digital Image Fundamentals - I
COM2304: Digital Image Fundamentals - I
 
Smoothing Filters in Spatial Domain
Smoothing Filters in Spatial DomainSmoothing Filters in Spatial Domain
Smoothing Filters in Spatial Domain
 
Color image processing Presentation
Color image processing PresentationColor image processing Presentation
Color image processing Presentation
 
Run length encoding
Run length encodingRun length encoding
Run length encoding
 
1.arithmetic & logical operations
1.arithmetic & logical operations1.arithmetic & logical operations
1.arithmetic & logical operations
 
imageprocessing-abstract
imageprocessing-abstractimageprocessing-abstract
imageprocessing-abstract
 
Lecture 4 Relationship between pixels
Lecture 4 Relationship between pixelsLecture 4 Relationship between pixels
Lecture 4 Relationship between pixels
 
digital image processing
digital image processingdigital image processing
digital image processing
 
The motion estimation
The motion estimationThe motion estimation
The motion estimation
 
Radial basis function network ppt bySheetal,Samreen and Dhanashri
Radial basis function network ppt bySheetal,Samreen and DhanashriRadial basis function network ppt bySheetal,Samreen and Dhanashri
Radial basis function network ppt bySheetal,Samreen and Dhanashri
 
Sharpening spatial filters
Sharpening spatial filtersSharpening spatial filters
Sharpening spatial filters
 
Single Image Super Resolution Overview
Single Image Super Resolution OverviewSingle Image Super Resolution Overview
Single Image Super Resolution Overview
 
03 image transform
03 image transform03 image transform
03 image transform
 

Similar a Automatic leukemia detection using image processing technique

Similar a Automatic leukemia detection using image processing technique (20)

RBC
RBCRBC
RBC
 
IRJET- Counting of RBCS and WBCS using Image Processing Technique
IRJET- Counting of RBCS and WBCS using Image Processing TechniqueIRJET- Counting of RBCS and WBCS using Image Processing Technique
IRJET- Counting of RBCS and WBCS using Image Processing Technique
 
wbc_rbc
wbc_rbcwbc_rbc
wbc_rbc
 
IRJET- Counting of RBCS and WBCS using Image Processing Technique
IRJET-  	  Counting of RBCS and WBCS using Image Processing TechniqueIRJET-  	  Counting of RBCS and WBCS using Image Processing Technique
IRJET- Counting of RBCS and WBCS using Image Processing Technique
 
Ijet 21658
Ijet 21658Ijet 21658
Ijet 21658
 
Ijet 21655
Ijet 21655Ijet 21655
Ijet 21655
 
IRJET-Automatic RBC And WBC Counting using Watershed Segmentation Algorithm
IRJET-Automatic RBC And WBC Counting using Watershed Segmentation AlgorithmIRJET-Automatic RBC And WBC Counting using Watershed Segmentation Algorithm
IRJET-Automatic RBC And WBC Counting using Watershed Segmentation Algorithm
 
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
DETECTING AND COUNTING THE NO. OF WHITE BLOOD CELLS IN BLOOD SAMPLE IMAGES BY...
 
IRJET - Detection of Brain Tumor from MRI Images using MATLAB
IRJET - Detection of Brain Tumor from MRI Images using MATLABIRJET - Detection of Brain Tumor from MRI Images using MATLAB
IRJET - Detection of Brain Tumor from MRI Images using MATLAB
 
IRJET- Survey on Detection of Cervical Cancer
IRJET- Survey on Detection of Cervical CancerIRJET- Survey on Detection of Cervical Cancer
IRJET- Survey on Detection of Cervical Cancer
 
Microscopic Image Analysis for Cell Counting using MATLAB.pdf
Microscopic Image Analysis for Cell Counting using MATLAB.pdfMicroscopic Image Analysis for Cell Counting using MATLAB.pdf
Microscopic Image Analysis for Cell Counting using MATLAB.pdf
 
CLASSIFICATION AND SEGMENTATION OF LEUKEMIA USING CONVOLUTION NEURAL NETWORK
CLASSIFICATION AND SEGMENTATION OF LEUKEMIA USING CONVOLUTION NEURAL NETWORKCLASSIFICATION AND SEGMENTATION OF LEUKEMIA USING CONVOLUTION NEURAL NETWORK
CLASSIFICATION AND SEGMENTATION OF LEUKEMIA USING CONVOLUTION NEURAL NETWORK
 
Brain Tumor Detection and Classification Using MRI Brain Images
Brain Tumor Detection and Classification Using MRI Brain ImagesBrain Tumor Detection and Classification Using MRI Brain Images
Brain Tumor Detection and Classification Using MRI Brain Images
 
Investigation of white blood cell biomaker model for acute lymphoblastic leuk...
Investigation of white blood cell biomaker model for acute lymphoblastic leuk...Investigation of white blood cell biomaker model for acute lymphoblastic leuk...
Investigation of white blood cell biomaker model for acute lymphoblastic leuk...
 
IRJET- Detection of White Blood Sample Cells using CNN
IRJET- Detection of White Blood Sample Cells using CNNIRJET- Detection of White Blood Sample Cells using CNN
IRJET- Detection of White Blood Sample Cells using CNN
 
IRJET- Detection of White Blood Sample Cells using CNN
IRJET-  	  Detection of White Blood Sample Cells using CNNIRJET-  	  Detection of White Blood Sample Cells using CNN
IRJET- Detection of White Blood Sample Cells using CNN
 
An Efficient Automatic Segmentation Method For Leukocytes
An Efficient Automatic Segmentation Method For LeukocytesAn Efficient Automatic Segmentation Method For Leukocytes
An Efficient Automatic Segmentation Method For Leukocytes
 
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
A Dualistic Sub-Image Histogram Equalization Based Enhancement and Segmentati...
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)
 
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
An Efficient Brain Tumor Detection Algorithm based on Segmentation for MRI Sy...
 

Más de IJLT EMAS

Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...
Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...
Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...
IJLT EMAS
 
Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...
Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...
Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...
IJLT EMAS
 
Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...
Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...
Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...
IJLT EMAS
 
Impact of Organisational behaviour and HR Practices on Employee Retention in ...
Impact of Organisational behaviour and HR Practices on Employee Retention in ...Impact of Organisational behaviour and HR Practices on Employee Retention in ...
Impact of Organisational behaviour and HR Practices on Employee Retention in ...
IJLT EMAS
 
Hassle Free Travel
Hassle Free TravelHassle Free Travel
Hassle Free Travel
IJLT EMAS
 

Más de IJLT EMAS (20)

Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...
Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...
Lithological Investigation at Tombia and Opolo Using Vertical Electrical Soun...
 
Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...
Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...
Public Health Implications of Locally Femented Milk (Nono) and Antibiotic Sus...
 
Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...
Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...
Bioremediation Potentials of Hydrocarbonoclastic Bacteria Indigenous in the O...
 
Comparison of Concurrent Mobile OS Characteristics
Comparison of Concurrent Mobile OS CharacteristicsComparison of Concurrent Mobile OS Characteristics
Comparison of Concurrent Mobile OS Characteristics
 
Design of Complex Adders and Parity Generators Using Reversible Gates
Design of Complex Adders and Parity Generators Using Reversible GatesDesign of Complex Adders and Parity Generators Using Reversible Gates
Design of Complex Adders and Parity Generators Using Reversible Gates
 
Design of Multiplexers, Decoder and a Full Subtractor using Reversible Gates
Design of Multiplexers, Decoder and a Full Subtractor using Reversible GatesDesign of Multiplexers, Decoder and a Full Subtractor using Reversible Gates
Design of Multiplexers, Decoder and a Full Subtractor using Reversible Gates
 
Multistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s DiseaseMultistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s Disease
 
Design and Analysis of Disc Brake for Low Brake Squeal
Design and Analysis of Disc Brake for Low Brake SquealDesign and Analysis of Disc Brake for Low Brake Squeal
Design and Analysis of Disc Brake for Low Brake Squeal
 
Tomato Processing Industry Management
Tomato Processing Industry ManagementTomato Processing Industry Management
Tomato Processing Industry Management
 
Management of Propylene Recovery Unit
Management of Propylene Recovery UnitManagement of Propylene Recovery Unit
Management of Propylene Recovery Unit
 
Online Grocery Market
Online Grocery MarketOnline Grocery Market
Online Grocery Market
 
Management of Home Textiles Export
Management of Home Textiles ExportManagement of Home Textiles Export
Management of Home Textiles Export
 
Coffee Shop Management
Coffee Shop ManagementCoffee Shop Management
Coffee Shop Management
 
Management of a Paper Manufacturing Industry
Management of a Paper Manufacturing IndustryManagement of a Paper Manufacturing Industry
Management of a Paper Manufacturing Industry
 
Application of Big Data Systems to Airline Management
Application of Big Data Systems to Airline ManagementApplication of Big Data Systems to Airline Management
Application of Big Data Systems to Airline Management
 
Impact of Organisational behaviour and HR Practices on Employee Retention in ...
Impact of Organisational behaviour and HR Practices on Employee Retention in ...Impact of Organisational behaviour and HR Practices on Employee Retention in ...
Impact of Organisational behaviour and HR Practices on Employee Retention in ...
 
Sustainable Methods used to reduce the Energy Consumption by Various Faciliti...
Sustainable Methods used to reduce the Energy Consumption by Various Faciliti...Sustainable Methods used to reduce the Energy Consumption by Various Faciliti...
Sustainable Methods used to reduce the Energy Consumption by Various Faciliti...
 
Sweet-shop Management
Sweet-shop ManagementSweet-shop Management
Sweet-shop Management
 
Hassle Free Travel
Hassle Free TravelHassle Free Travel
Hassle Free Travel
 
Aviation Meteorology
Aviation MeteorologyAviation Meteorology
Aviation Meteorology
 

Último

1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
AldoGarca30
 
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
Neometrix_Engineering_Pvt_Ltd
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
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
jaanualu31
 

Último (20)

GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLEGEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
GEAR TRAIN- BASIC CONCEPTS AND WORKING PRINCIPLE
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best ServiceTamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
Tamil Call Girls Bhayandar WhatsApp +91-9930687706, Best Service
 
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
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
Online food ordering system project report.pdf
Online food ordering system project report.pdfOnline food ordering system project report.pdf
Online food ordering system project report.pdf
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
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
 
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
 
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
 
Moment Distribution Method For Btech Civil
Moment Distribution Method For Btech CivilMoment Distribution Method For Btech Civil
Moment Distribution Method For Btech Civil
 
Engineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planesEngineering Drawing focus on projection of planes
Engineering Drawing focus on projection of planes
 
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
 
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
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 

Automatic leukemia detection using image processing technique

  • 1. International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS) Volume VI, Issue IV, April 2017 | ISSN 2278-2540 www.ijltemas.in Page 42 Automatic Leukemia Detection Using Image Processing Technique Tathagata Hazra1 , Mrinal Kumar2 , Dr. Sanjaya Shankar Tripathy3 1, 2 ME Student, Department of ECE, BIT Mesra. 3 Assistant Professor, Department of ECE, BIT Mesra Abstract: This paper is about the proposal of automated leukemia detection approach. In a manual method trained physician count WBC to detect leukemia from the images taken from the microscope. This manual counting process is time taking and not that much accurate because it completely depends on the physician’s skill. To overcome these drawbacks an automated technique of detecting leukemia is developed. This technique involves some filtering techniques and k-mean clustering approach for image preprocessing and segmentation purpose respectively. After that an automated counting algorithm is used to count WBC to detect leukemia. Some features like area, perimeter, mean, centroid, solidity, smoothness, skewness, energy, entropy, homogeneity, standard deviation etc. are extracted and calculated. After that neural network methodology is used to know directly whether the image has cancer effected cell or not. This proposed method has achieved an accuracy of 90%. Key words: MATLAB code, segmentation, WBC detection, leukemia detection. I. INTRODUCTION eukemia is generated from the bone marrow. It can be cause of death if treatment is not started at right time. A thin material is situated inside each bone which is known as bone marrow shown in the fig. 1.Every human body has mainly three type of blood cells:-RBC(red blood cell),WBC(white blood cell),PLT(platelets).In this paper main point of concern is to detect leukemia. So we are only concentrating on the count of WBC(leucocytes).There are two type of stem cell, myeloid and lymphoid stem cell which are shown in the fig.2.Myeloid stem cell emerges into myeloid blast. This myeloid blast is the reason for generating of RBC(erythrocytes),WBC(leucocytes) and platelets. Lymphoid stem cell also enduces lymphoid blast which will generate only the white blood cell(WBC).Bone marrow produces abnormal white blood cells(WBCs).These abnormal cells should die after some time but in reality they do not die and they become numerous in count. The normal white blood cells are interrupted by those abnormal white blood cells in doing their normal work. And this type of situation is named as disease like „Leukemia‟. Leukemia can be classified into Chronic and Acute leukemia. Chronic Leukemia:-Abnormal white blood cells perform like normal white blood cells and they will increase gradually. Acute Leukemia:-Abnormal white blood cells do not perform like normal cells and they will increase rapidly in number. Fig.1 Fig.2 L
  • 2. International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS) Volume VI, Issue IV, April 2017 | ISSN 2278-2540 www.ijltemas.in Page 43 II. PROPOSED METHOD The Proposed method to detect Leukemia automatically from the microscopic image is shown below. Image Acquisition: In this part a good quality of images are taken by microscopic setup. Image Pre-Processing: The images which are taken may have some noise, blurriness etc. In this part of image processing we are trying to remove those unnecessary things for making the images more suitable for the next step of computational process. Pre-processing techniques usually include enhancing contrast, removing noise, isolating regions etc. The median filtering technique is used here to remove noise. And for removing blurriness from the image wiener filter is used. Image Segmentation: This is one of the most important part in the image processing technique. To identify and count white blood cells separation from the other cells are very much important. Through segmentation separation is done. Segmentation can be done in many way but we are using here the K-means clustering technique for segmentation. Here K-means clustering gives the best result because WBCs are well separated from the other cells in blood sample image. When the images are converted into gray scale images the WBCs are become the darkest region of the images. After that we are applying histogram equalization and Zack algorithm for grouping of white blood cells. Grouped Cells Identification: Some blood images have some adjacent cells. It is really difficult to extract some features if the cells are grouped and not well separated. The feature like area are very difficult to extract if the nucleus of the cells are joined together. So our duty is to separate well these cells before studying them further. Some methods are exist to separate those grouped cells. Roundness measurement technique is used here. We are using this technique because we can identify the grouped cells easily by only analyzing the shape of them. Roundness will check whether the shape of the cell is circular or not. Roundness can be extracted by using an equation which is given below:- = The theoretical value of the roundness is 1 for circular objects and less than 1 for non circular objects. But practically after some experiments it is found that 0.9 can be used as threshold value to distinguish single and grouped cells. The objects having the value more than the threshold value are treated as single cells and objects having the value less than the threshold value are treated as grouped cells. Image Cleaning: In this part WBCs which are on the edge of the image are removed to get better result. WBC Count: In this part WBCs are counted automatically. There some algorithms exist to count WBCs in an automatic way. We are using shape based feature technique algorithm to count WBCs. We get some idea from the Viola-Jones object detection algorithm to detect and count WBCs. Feature Extraction: In this part some features are extracted from the processed image. In this phase we are trying to find out the features of the nucleus of the leucocytes(WBCs).Feature extraction is the process of collecting some data from the image so that we can check these values of data with the standard value so that we can differentiate easily that the image has cancerous cells or not. Some of the necessary features which are to be calculated are given below:-
  • 3. International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS) Volume VI, Issue IV, April 2017 | ISSN 2278-2540 www.ijltemas.in Page 44 Geometric Features:- Area,perimeter,centroid,eccentricity,compactness,convexity, concavity,rectangularuty,elongation,solidity etc. Texture Features:- energy, entropy, homogeneity, correlation etc. Statistical Features:- Mean, variance, standard-deviation, skewness etc. Rectangularity is tells about the bounding box fitness. Convexity is nothing but the difference between the object from its convex object. The ratio of area of an object and area of the circle with same perimeter is called as compactness. The ratio of area and the convex area of each object is named as solidity. Actually solidity is used to remove the object from the image which has irregular boundaries. If the value of solidity is 1 then we can say that the object has regular surface and if the solidity value is less than 1 then the object does not have regular boundaries. But after a lot of experiments we can set the threshold value of solidity as 0.85. So the object in the image having the value less than that is removed. Image Classification: All the features are calculated and extracted are listed in a column with their values. We will get a matrix called feature extracted matrix. The image to be tested called as test image. The values of the test image features are checked with the previously calculated values based on the values of the input test image while the SVM classifier will classify that whether the test image has infected cell or not. We are also using PNN(probabilistic neural network) with the extracted feature matrix to know whether the cell is infected or not. III. EXPERIMENTAL RESULTS The proposed system gives the below images as result.
  • 4. International Journal of Latest Technology in Engineering, Management & Applied Science (IJLTEMAS) Volume VI, Issue IV, April 2017 | ISSN 2278-2540 www.ijltemas.in Page 45 The image which is tested in proposed method is called as input blood image shown in the fig(a).After that image pre- processing is done that means noise reduction, contrast enhancement, edge cleaning etc. are done and then convert the image into the gray scale image. After that the proposed system converts the gray image into the cluster index image which is shown in the fig(b).After that k-means clustering algorithm is used to extract three cluster from the image which are background, red blood cell cluster, white blood cell cluster. Background cluster image is shown in the fig(c).Red blood cell cluster image is shown in the fig(d).And the most important one for our study white blood cell cluster is shown in the fig(e). IMAGE MANUAL COUNT AUTOMATIC COUNT ACCURACY Image1 4 4 100% Image2 6 6 100% Image3 8 7 87.5% Image4 3 3 100% Image5 5 5 100% Image6 4 4 100% Image7 9 8 88.8% Image8 11 10 90.9% Image9 15 12 80% Table1-The proposed system performance for WBC detection. Results of 9 images are given here. But we have done observations on lot of images which is nearly about a slide. After a lot of experiments we have achieved an accuracy of 94.11%. IV. CONCLUSION In this paper the main point of concern is automatic counting of WBCs to detect leukemia automatically from the image which is taken from the microscope. The manual counting process to detect leukemia is very much time taking and gives inaccurate result also. So to save lives this automated proposed method is very important. Actually in two ways we can detect leukemia. one is by automatic counting and on the other way SVM classifier will tell automatically whether the image has leukemia effected cells or not. For the first one after segmentation counting algorithm is used to count automatically. And for the second one some features are extracted to form a feature matrix to compare with the standard values. We have achieved an accuracy of almost 94.11% using this proposed method of counting. REFERENCES [1]. H. Ramoser, V. Laurain, H. Bischof and R. Ecker, "Leukocyte segmentation and classification in blood-smear images," in IEEE Engineering in Medicine and Biology, Shanghai, 2005. [2]. G. Lebrun, C. Charrier, “A fast and efficient segmentation scheme for cell microscopic image,” in Cellular and Molecular Biology TM 53, N°2, 51-61, 2007 . [3]. Marco Antonio Garcia de Carvalho ,Tiago William Pinto, Roberto Marcondes C´esar J´unior,” Image Segmentation Using Watershed and Normalized Cut”. [4]. G. Ongun, U. Halici, K. Leblebicioglu and V. Atala, "An automated differential blood count system," in Int. Conf. of the IEEE Engineering in Medicine and Biology Society, 2001, Istanbul. [5]. Mohapatra, Saurav, Dipti Patra, Sudhakar Kumar, and Siddhartha Satpathi. "Kernel induced rough c-means clustering for lymphocyte image segmentation." In Intelligent Human Computer Interaction (IHCI), 2012 4th International Conference on, pp. 1-6. IEEE, 2012 . [6]. Raje, Chaitali, and Jyoti Rangole. "Detection of Leukemia in microscopic images using image processing." In Communications and Signal Processing (ICCSP), 2014 International Conference on, pp. 255-259. IEEE, 2014. [7]. Berge, Heidi, Dale Taylor, Sriram Krishnan, and Tania S. Douglas. "Improved red blood cell counting in thin blood smears." In Biomedical Imaging: From Nano to Macro, 2011 IEEE International Symposium on, pp. 204-207. [8]. Abdul Nasir, A. S., M. Y. Mashor, and H. Rosline. "Unsupervised colour segmentation of white blood cell for acute leukaemia images." In Imaging Systems and Techniques (IST), 2011 IEEE International Conference on, pp. 142-145. IEEE, 2011.