SlideShare a Scribd company logo
1 of 4
Download to read offline
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.

More Related Content

What's hot

2017 07 03_meetup_d
2017 07 03_meetup_d2017 07 03_meetup_d
2017 07 03_meetup_dDana Brophy
 
Morphological image processing
Morphological image processingMorphological image processing
Morphological image processingRaghu Kumar
 
Chapter 9 morphological image processing
Chapter 9   morphological image processingChapter 9   morphological image processing
Chapter 9 morphological image processingAhmed Daoud
 
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...Editor IJMTER
 
Wavelet transform in image compression
Wavelet transform in image compressionWavelet transform in image compression
Wavelet transform in image compressionjeevithaelangovan
 
Deep neural networks
Deep neural networksDeep neural networks
Deep neural networksSi Haem
 
Wavelet transform in two dimensions
Wavelet transform in two dimensionsWavelet transform in two dimensions
Wavelet transform in two dimensionsAyushi Gagneja
 
An introduction to digital signal processors 1
An introduction to digital signal processors 1An introduction to digital signal processors 1
An introduction to digital signal processors 1Hossam Hassan
 
Image Processing and Computer Vision
Image Processing and Computer VisionImage Processing and Computer Vision
Image Processing and Computer VisionSilicon Mentor
 
Digital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdf
Digital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdfDigital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdf
Digital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdfssuserbe3944
 
6.frequency domain image_processing
6.frequency domain image_processing6.frequency domain image_processing
6.frequency domain image_processingNashid Alam
 
Fundamentals steps in Digital Image processing
Fundamentals steps in Digital Image processingFundamentals steps in Digital Image processing
Fundamentals steps in Digital Image processingKarthicaMarasamy
 
Classification of Leukemia Detection in Human Blood Sample Based on Microscop...
Classification of Leukemia Detection in Human Blood Sample Based on Microscop...Classification of Leukemia Detection in Human Blood Sample Based on Microscop...
Classification of Leukemia Detection in Human Blood Sample Based on Microscop...ijtsrd
 
I.BEST FIRST SEARCH IN AI
I.BEST FIRST SEARCH IN AII.BEST FIRST SEARCH IN AI
I.BEST FIRST SEARCH IN AIvikas dhakane
 

What's hot (20)

image compression ppt
image compression pptimage compression ppt
image compression ppt
 
Image processing ppt
Image processing pptImage processing ppt
Image processing ppt
 
2017 07 03_meetup_d
2017 07 03_meetup_d2017 07 03_meetup_d
2017 07 03_meetup_d
 
Medical image analysis
Medical image analysisMedical image analysis
Medical image analysis
 
Morphological image processing
Morphological image processingMorphological image processing
Morphological image processing
 
Image recognition
Image recognitionImage recognition
Image recognition
 
Chapter 9 morphological image processing
Chapter 9   morphological image processingChapter 9   morphological image processing
Chapter 9 morphological image processing
 
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
CHARACTER RECOGNITION USING NEURAL NETWORK WITHOUT FEATURE EXTRACTION FOR KAN...
 
Image compression models
Image compression modelsImage compression models
Image compression models
 
Wavelet transform in image compression
Wavelet transform in image compressionWavelet transform in image compression
Wavelet transform in image compression
 
Deep neural networks
Deep neural networksDeep neural networks
Deep neural networks
 
Wavelet transform in two dimensions
Wavelet transform in two dimensionsWavelet transform in two dimensions
Wavelet transform in two dimensions
 
An introduction to digital signal processors 1
An introduction to digital signal processors 1An introduction to digital signal processors 1
An introduction to digital signal processors 1
 
Image Processing and Computer Vision
Image Processing and Computer VisionImage Processing and Computer Vision
Image Processing and Computer Vision
 
Digital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdf
Digital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdfDigital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdf
Digital Image Processing 3rd edition Rafael C. Gonzalez, Richard E. Woods.pdf
 
6.frequency domain image_processing
6.frequency domain image_processing6.frequency domain image_processing
6.frequency domain image_processing
 
Fundamentals steps in Digital Image processing
Fundamentals steps in Digital Image processingFundamentals steps in Digital Image processing
Fundamentals steps in Digital Image processing
 
Classification of Leukemia Detection in Human Blood Sample Based on Microscop...
Classification of Leukemia Detection in Human Blood Sample Based on Microscop...Classification of Leukemia Detection in Human Blood Sample Based on Microscop...
Classification of Leukemia Detection in Human Blood Sample Based on Microscop...
 
Computer Vision
Computer VisionComputer Vision
Computer Vision
 
I.BEST FIRST SEARCH IN AI
I.BEST FIRST SEARCH IN AII.BEST FIRST SEARCH IN AI
I.BEST FIRST SEARCH IN AI
 

Similar to Automatic leukemia detection using image processing technique

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 TechniqueIRJET Journal
 
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 TechniqueIRJET Journal
 
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 AlgorithmIRJET Journal
 
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...IJEEE
 
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 MATLABIRJET Journal
 
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 CancerIRJET Journal
 
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.pdfhussain0075468
 
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 NETWORKIRJET Journal
 
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 ImagesIRJET Journal
 
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...journalBEEI
 
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 CNNIRJET Journal
 
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 CNNIRJET Journal
 
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 LeukocytesCSCJournals
 
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...inventy
 
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)IJERD Editor
 
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...ijtsrd
 

Similar to 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 21655
Ijet 21655Ijet 21655
Ijet 21655
 
Ijet 21658
Ijet 21658Ijet 21658
Ijet 21658
 
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...
 

More from 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
 
Comparison of Concurrent Mobile OS Characteristics
Comparison of Concurrent Mobile OS CharacteristicsComparison of Concurrent Mobile OS Characteristics
Comparison of Concurrent Mobile OS CharacteristicsIJLT EMAS
 
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 GatesIJLT EMAS
 
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 GatesIJLT EMAS
 
Multistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s DiseaseMultistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s DiseaseIJLT EMAS
 
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 SquealIJLT EMAS
 
Tomato Processing Industry Management
Tomato Processing Industry ManagementTomato Processing Industry Management
Tomato Processing Industry ManagementIJLT EMAS
 
Management of Propylene Recovery Unit
Management of Propylene Recovery UnitManagement of Propylene Recovery Unit
Management of Propylene Recovery UnitIJLT EMAS
 
Online Grocery Market
Online Grocery MarketOnline Grocery Market
Online Grocery MarketIJLT EMAS
 
Management of Home Textiles Export
Management of Home Textiles ExportManagement of Home Textiles Export
Management of Home Textiles ExportIJLT EMAS
 
Coffee Shop Management
Coffee Shop ManagementCoffee Shop Management
Coffee Shop ManagementIJLT EMAS
 
Management of a Paper Manufacturing Industry
Management of a Paper Manufacturing IndustryManagement of a Paper Manufacturing Industry
Management of a Paper Manufacturing IndustryIJLT EMAS
 
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 ManagementIJLT 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
 
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...IJLT EMAS
 
Sweet-shop Management
Sweet-shop ManagementSweet-shop Management
Sweet-shop ManagementIJLT EMAS
 
Hassle Free Travel
Hassle Free TravelHassle Free Travel
Hassle Free TravelIJLT EMAS
 
Aviation Meteorology
Aviation MeteorologyAviation Meteorology
Aviation MeteorologyIJLT EMAS
 

More from 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
 

Recently uploaded

Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 

Recently uploaded (20)

Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 

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.