SlideShare uma empresa Scribd logo
1 de 7
Baixar para ler offline
Computer Engineering and Intelligent Systems www.iiste.org
ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online)
Vol.4, No.9, 2013
33
Multi-class Multi-label Classification and Detection of Lumbar
Intervertebral Disc Degeneration MR Images using Decision Tree
Classifiers
Isam Abu-Qasmieh*
Department of Biomedical Systems and Informatics Engineering, Yarmouk University, PO box 566,
Irbid 21163, Jordan
* E-mail of the corresponding author: iabuqasmieh@yu.edu.jo
Abstract
Evidence-based medicine decision-making based on computer-aided methods is a new direction in modern
healthcare. Data Mining Techniques in Computer-Aided Diagnosis (CAD) are powerful and widely used tools
for efficient and automated classification, retrieval, and pattern recognition of medical images. They become
highly desirable for the healthcare providers because of the massive and increasing volume of intervertebral disc
degeneration images. A fast and efficient classification and retrieval system using query images with high degree
of accuracy is vital. The method proposed in this paper for automatic detection and classification of lumbar
intervertebral disc degeneration MRI-T2 images makes use of texture-based pattern recognition in data mining.
A dataset of 181segmented ROIs, corresponding to 89 normal and 92 degenerated (narrowed) discs at different
vertebral level, was analyzed and textural features (contrast, entropy, and energy) were extracted from each disc-
ROI. The extracted features were employed in the design of a pattern recognition system using C4.5 decision
tree classifier. The system achieved a classification accuracy of 93.33% in designing a Multi-class Multi-label
classification system based on the affected disc position. This work combined with its higher accuracy is
considered a valuable knowledge for orthopedists in their diagnosis of lumbar intervertebral disc degeneration in
T2-weighted Magnetic Resonance sagittal Images and for automated annotation, archiving, and retrieval of these
images for later on usage.
Keywords: Data Mining, Image Processing, Lumbar Intervertebral Disc Degeneration, MRI-T2, Decision Trees,
Multi-class Multi-label Classification.
1. Introduction
Degenerative lumbar discs have been suggested as a potential cause of lower back pain [1, 2]. Therefore,
development of a classification system that can detect degeneration at different stages and different positions
(discs), helps in archiving and retrieval of Intervertebral Disc Degeneration MR Images. It also provides a robust
tool for optimizing the diagnostic decision making. Clinically, T2-weighted magnetic resonance imaging (MRI)
at sagittal plane is the modality of choice for diagnosing Degenerative Disc Disease (DDD) where changes in
disc MRI signal accurately reflect the presence or absence of degenerative changes seen on discography in
patients with low-back pain [3].
Machine learning techniques have been widely and successfully applied in Computer-Aided Diagnosis [4] [5]
[6]. Data mining as a machine learning technique has been used as a powerful tool for medical image
classification [7-13]. In this study, the decision-tree model is used for classification of the intervertebral disc
degeneration. Computerized approaches, based on disc morphology, have been proposed for the characterization
of intervertebral disc degeneration [14, 15]. Texture has been widely used in image classification with an
application of image retrieval [16]. The most commonly extracted features are Contrast, Energy, Entropy,
Homogeneity, and Correlation [17].
In the present study, a texture-based pattern recognition system is proposed for the assessment of lumbar
intervertebral disc degeneration. Textural features are generated from MR images of normal and degenerated
lumbar intervertebral discs and the extracted features (contrast, energy, and entropy) of the preprocessed MR
images are employed in the design of a classification scheme, used for the discrimination between normal and
degenerated disc and which disc is the affected one. MR image preprocessing includes image denoising using
Gaussian filter, image enhancement using histogram equalization, and image edge detection using Canny edge
detection algorithm.
Computer Engineering and Intelligent Systems www.iiste.org
ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online)
Vol.4, No.9, 2013
34
Decision trees are usually used for classification to predict what group a case belongs to [18]. The decision trees
generated by C4.5 [19] are used for classification in this study. J48 is an open source Java implementation of the
C4.5 algorithm in the Weka data mining tool [20]. J48 in WEKA refers to Quinlan’s C4.5 algorithm with
optional pruning. J48 is used to build decision trees from a set of labeled training data using the concept of
information entropy. To split the data at each stage of the tree construction, a test is performed to select an
attribute with the lowest entropy [21].
2. Methodology
181 T2-MR sagittal images, depicting the lower lumbar spine, were obtained from a local public hospital,
corresponding to 89 normal and 92 degenerated discs. The data is randomly divided into 151 training and 30
testing sets.
The images were subjected to preprocessing before starting of training and testing. Initially, all images have been
resized to a common resolution (256 x 256) in order to reduce biasing effects. In each of the resized spine images,
the region of interest (ROI) were segmented at the lumbar intervertebral discs region by cropping all images
automatically at fixed coordinates, assuming that the acquired spine sagittal images are typically depicting the
spine discs at the same tissue slice plane and scene (which is the case most of the time). The segmented partition
of each image has been histogram equalized to improve the images contrast and to expand the intensity values
range. Image denoising and smoothing using Gaussian filtering is performed. Then an embedded operation of
Canny edge detection operator which was applied to each segmented and enhanced partition to extract the image
boundaries as thin single-pixel lines. Fig1 shows the preprocessing stages of the spine MR image as a primary
step in the pattern recognition adopted system which is then followed by features extraction step.
The classification-based automatic image annotation was performed by extracting global texture features using
Gray level co-occurrence matrix. The selected global features are entropy, contrast, and energy.
The extracted features are then stored in excel spreadsheet used by Quinlan’s C4.5 classifier to construct the
Multi-class Multi-label annotation model. The model is used to classify the lumbar disc images as normal or
degenerated and if it is degenerated a sub-classification is made based on which disc is affected. The J48
decision tree generated from WEKA tool was used as an implementation of Quinlan’s C4.5 algorithm.
3. Results and Discussion
151 multi-labeled T2-MR Images where randomly selected for J48 decision tree training algorithm with optional
pruning. The J48 pruned tree is converted into if-then-else rules from the set of predefined labeled training
images in order to get a decision tree that minimizes the error rate and thus producing the highest number of
correctly classified labeled images. The resultant Decision tree model from the input features is illustrated in Fig
2. The Decision tree model can be effectively used to determine the most important attributes in the examined
dataset. The attribute which maximizes the gain ratio or information gain the most is selected as the root node or
top node. The value of the attribute at which this gain occurs is obviously the split point. As we notice from the
tree model, the root node is the energy attribute.
The output report of the decision tree's if-then rules implemented on the testing preprocessed images is shown in
Table1.
To generate annotations, each image passes through a series of three-class classifiers for each diagnosis. In our
annotation model, each word is assigned independently by the decision tree obtained for each diagnosis from
texture feature attributes namely, contrast, entropy, and energy.
Table 2. illustrates the results of the J48 classifier, here 151 spine images are taken for training and 30 images are
taken for the testing in both normal and degenerated cases. The results in Table 2. show that the proposed system
gives an accuracy of 93.33 percent.
The k-means algorithm is the most commonly used partitional clustering algorithm because it can be easily
implemented and is the most time-efficient algorithm in the field of clustering. The central concept in the k-
means algorithm is the centroid [22]. In data clustering, the centroid of a set of data observations is the one
observation that’s most representative of the group. Fig3 shows that the result of k-means clustering Methods
using WEKA tool gives a well separated (non-overlapping) clusters for images with different diagnosis.
Michopoulou et al [23] has achieved an overall classification accuracy of 93.8% in their work of designing a
Computer Engineering and Intelligent Systems www.iiste.org
ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online)
Vol.4, No.9, 2013
35
classification system for Cervical intervertebral discs, where they used the Least Squares Minimum Distance
Classifier in combination with four textural features in order to classify the cervical discs as normal or
degenerated in 32 saggital magnetic resonance images. This accuracy was obtained by using the same set of
images for training and for testing as well. In our work we have used two different datasets for training and
testing (151 images for training and another 30 images for testing) which gives our model a broadest attainable
generality of applicability. Moreover, our model is a Multi-class Multi-label annotation model which sub-
classifies the degenerated discs based on which disc in the lumbar region is affected.
4. Conclusion
The proposed classifier has been successfully applied in constructing a decision tree model with promising
degree of accuracy for Multi-class Multi-label intervertebral disc degeneration T2-MR images classification,
detection, and retrieval. This accuracy is assumed to manifest itself in building a decision support system for
diagnosis of lumbar degenerative disc disease.
References
1. Kramer J. (2008). Intervertebral disk disease, causes, diagnosis, treatment and prophylaxis. (3rd ed.). New
York: Thieme Medical Publishers
2. Michael A. Adams, Peter J. Roughley (2006), What is Intervertebral Disc Degeneration, and What Causes It?.
Spine. 31(18):2151-2161
3. Thalgott JS, Albert TJ, Vaccaro AR, Aprill CN, Giuffre JM, Drake JS, Henke JP (2004), A new classification
system for degenerative disc disease of the lumbar spine based on magnetic resonance imaging, provocative
discography, plain radiographs and anatomic considerations. Spine 4:167S–172S
4. T. Hothorn and B. Lausen (2003), Bagging tree classifiers for laser scanning images: a data- and simulation-
based strategy. Artificial Intelligence in Medicine, vol.27, no.1, pp.65-79
5. A. Sharkey, N. Sharkey, and S. Cross (1998), Adapting an ensemble approach for the diagnosis of breast cancer.
In Proceedings of the 6th International Conference on Artificial Neural Networks, Skovd, Sweden, pp. 281-286
6. Z.-H. Zhou, Y. Jiang, Y.-B. Yang, and S.-F. Chen (2002), Lung cancer cell identification based on artificial
neural network ensembles. Artificial Intelligence in Medicine, vol.24, no.1, pp.25-36
7. S. Lai, X. Li, and W. Bischof (1989). On techniques for detecting circumscribed masses in mammograms. IEEE
Trans. Medical Imaging, 8(4):377–386
8. T.Wang and N. Karayiannis (1998). Detection of microcalcification in digitalmammograms using wavelets.
IEEE Trans. Medical Imaging, 17(4):498–509
9. I. Christoyianni et al (2000). Fast detection of masses in computer-aided mammography. IEEE Signal
Processing Magazine, pages 54–64, Jan 2000
10. Maria-Luiza Antonie, Database, Maria-luiza Antonie (2001). Application of Data Mining Techniques for
Medical Image Classification. In Proc. of Second Intl. Workshop on Multimedia Data Mining
(MDM/KDD’2001) in conjunction with Seventh ACM SIGKDD.
11. P.Rajendran, M.Madheswaran (2009). An Improved Image Mining Technique For Brain Tumor Classification
Using Efficient classifier. (IJCSIS) International Journal of Computer Science and Information Security, Vol. 6,
No. 3
12. Wen-Jia Kuo, Ruey-Feng Chang, Dar-Ren Chen, and Cheng Chun Lee (2001). Data mining with decision trees
for diagnosis of breast tumor in medical ultrasonic images. Breast Cancer Research and Treatment 66: 51–57
13. Ada, Rajneet Kaur (2013). A Study of Detection of Lung Cancer Using Data Mining Classification Techniques.
International Journal of Advanced Research in Computer Science and Software Engineering. Volume 3, Issue 3,
March 2013.
14. Chamarthy P, Stanley RJ, Cizek G, Long R, Antani S, Thoma G (2004). Image analysis techniques for
characterizing disc space narrowing in cervical vertebrae interfaces, Comput. Med. Imaging Graph. 28(1-2):39-
50
15. M. Tsai, S.B. Jou and M.S. Hsieh (2002). A methods for lumbar intervertebral disc diagnosis based on image
analysis of transverse sections, Comput. Med. Imaging Graph. 26-369
16. Manjunath B.S, Ma W (1996). Texture Features for browsing and retrieval of image data. IEEE Transaction on
Patt. Anal. And Machine Intell. pp 837-842
17. E R Vimina and K Poulose Jacob (2013). A Sub-block Based Image Retrieval Using Modified Integrated Region
Matching. IJCSI International Journal of Computer Science Issues, Vol. 10, Issue 1, No 2, January 2013 ISSN
Computer Engineering and Intelligent Systems www.iiste.org
ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online)
Vol.4, No.9, 2013
36
(Print): 1694-0784 | ISSN (Online): 1694-0814.
18. Dar-Ren Chen, Wen-Jia Kuo, Ruey-Feng Chan, Woo Kyung Moon, and Cheng Chun Lee (2002). Use of the
Bootstrap Technique with Small Training Sets for Computer-Aided Diagnosis in Breast Ultrasound. Ultrasound
in Med. & Biol. Vol. 28, No. 7, pp. 897–902
19. Quinlan, J. R (1994). C4.5: Programs for Machine Learning, Machine Learning. September, Volume 16, Issue 3,
pp 235-240
20. Ghofran Othoum and Wadee Al-Halabi (2011). Predicting Breast Cancer Survivability Rates For data collected
from Saudi Arabia Registries. PROCEEDINGS OF THE 2011 INTERNATIONAL CONFERENCE ON
ARTIFICIAL INTELLIGENCE. Pages: 918-922.
21. Bishop C.M. (2006). Pattern Recognition and Machine Learning. Berlin: Springer-Verlag
22. Michopoulou S, Boniatis I, Costaridou L, Cavouras D, Panagiotopoulos E, Panayiotakis G (2009). Computer
assisted characterization of cervical intervertebral disc degeneration in MRI. Journal of Instrumentation. 4(2009)
P05022
Table 1. If-then rules of the adapted decision tree algorithm.
The J48 pruned tree is converted into if-then-else rules from the set of predefined labeled training.
Computer Engineering and Intelligent Systems www.iiste.org
ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online)
Vol.4, No.9, 2013
37
Table 2. The output report of the accuracy result after model training.
The evaluation on a test dataset consisting of 30 images. The result shows an accuracy of 93.33%.
Fig1. The stage T2-MR spine image preprocessing. a) The resized original image., b) Cropped image at the
region of Lumbar vertebral region, c)Histogram equalized image of the cropped image in b. and d) Canny
edge detection of c.
Computer Engineering and Intelligent Systems www.iiste.org
ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online)
Vol.4, No.9, 2013
38
Fig 2. Output decision tree using J48 algorithm.
Figure 2 shows the value of the attribute at which information gain occurs most often which is energy feature.
The disc's symbol shown in the figure means the vertebra that is below the disc, for example S1 means the disc
known as L5-S1.
Fig 3. k-means clustering method in WEKA for energy feature.
The x-axis indicates diagnosis whether it is normal with "no" label" or degenerated labeled with the affected disc,
and y-axis is for energy. The results show that clusters of normal and upnormal are very well separated.
This academic article was published by The International Institute for Science,
Technology and Education (IISTE). The IISTE is a pioneer in the Open Access
Publishing service based in the U.S. and Europe. The aim of the institute is
Accelerating Global Knowledge Sharing.
More information about the publisher can be found in the IISTE’s homepage:
http://www.iiste.org
CALL FOR JOURNAL PAPERS
The IISTE is currently hosting more than 30 peer-reviewed academic journals and
collaborating with academic institutions around the world. There’s no deadline for
submission. Prospective authors of IISTE journals can find the submission
instruction on the following page: http://www.iiste.org/journals/ The IISTE
editorial team promises to the review and publish all the qualified submissions in a
fast manner. All the journals articles are available online to the readers all over the
world without financial, legal, or technical barriers other than those inseparable from
gaining access to the internet itself. Printed version of the journals is also available
upon request of readers and authors.
MORE RESOURCES
Book publication information: http://www.iiste.org/book/
Recent conferences: http://www.iiste.org/conference/
IISTE Knowledge Sharing Partners
EBSCO, Index Copernicus, Ulrich's Periodicals Directory, JournalTOCS, PKP Open
Archives Harvester, Bielefeld Academic Search Engine, Elektronische
Zeitschriftenbibliothek EZB, Open J-Gate, OCLC WorldCat, Universe Digtial
Library , NewJour, Google Scholar

Mais conteúdo relacionado

Mais procurados

View classification of medical x ray images using pnn classifier, decision tr...
View classification of medical x ray images using pnn classifier, decision tr...View classification of medical x ray images using pnn classifier, decision tr...
View classification of medical x ray images using pnn classifier, decision tr...
eSAT Journals
 
11.segmentation and feature extraction of tumors from digital mammograms
11.segmentation and feature extraction of tumors from digital mammograms11.segmentation and feature extraction of tumors from digital mammograms
11.segmentation and feature extraction of tumors from digital mammograms
Alexander Decker
 

Mais procurados (20)

IRJET - Clustering Algorithm for Brain Image Segmentation
IRJET - Clustering Algorithm for Brain Image SegmentationIRJET - Clustering Algorithm for Brain Image Segmentation
IRJET - Clustering Algorithm for Brain Image Segmentation
 
Implementing Tumor Detection and Area Calculation in Mri Image of Human Brain...
Implementing Tumor Detection and Area Calculation in Mri Image of Human Brain...Implementing Tumor Detection and Area Calculation in Mri Image of Human Brain...
Implementing Tumor Detection and Area Calculation in Mri Image of Human Brain...
 
Segmentation of Tumor Region in MRI Images of Brain using Mathematical Morpho...
Segmentation of Tumor Region in MRI Images of Brain using Mathematical Morpho...Segmentation of Tumor Region in MRI Images of Brain using Mathematical Morpho...
Segmentation of Tumor Region in MRI Images of Brain using Mathematical Morpho...
 
Wavelet Transform based Medical Image Fusion With different fusion methods
Wavelet Transform based Medical Image Fusion With different fusion methodsWavelet Transform based Medical Image Fusion With different fusion methods
Wavelet Transform based Medical Image Fusion With different fusion methods
 
Fuzzy k c-means clustering algorithm for medical image
Fuzzy k c-means clustering algorithm for medical imageFuzzy k c-means clustering algorithm for medical image
Fuzzy k c-means clustering algorithm for medical image
 
View classification of medical x ray images using pnn classifier, decision tr...
View classification of medical x ray images using pnn classifier, decision tr...View classification of medical x ray images using pnn classifier, decision tr...
View classification of medical x ray images using pnn classifier, decision tr...
 
Brain tissue segmentation from MR images
Brain tissue segmentation from MR images Brain tissue segmentation from MR images
Brain tissue segmentation from MR images
 
A Hybrid Approach for Classification of MRI Brain Tumors Using Genetic Algori...
A Hybrid Approach for Classification of MRI Brain Tumors Using Genetic Algori...A Hybrid Approach for Classification of MRI Brain Tumors Using Genetic Algori...
A Hybrid Approach for Classification of MRI Brain Tumors Using Genetic Algori...
 
Survey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation TechniquesSurvey on Brain MRI Segmentation Techniques
Survey on Brain MRI Segmentation Techniques
 
dFuse: An Optimized Compression Algorithm for DICOM-Format Image Archive
dFuse: An Optimized Compression Algorithm for DICOM-Format Image ArchivedFuse: An Optimized Compression Algorithm for DICOM-Format Image Archive
dFuse: An Optimized Compression Algorithm for DICOM-Format Image Archive
 
A Robust Method for Moving Object Detection Using Modified Statistical Mean M...
A Robust Method for Moving Object Detection Using Modified Statistical Mean M...A Robust Method for Moving Object Detection Using Modified Statistical Mean M...
A Robust Method for Moving Object Detection Using Modified Statistical Mean M...
 
11.segmentation and feature extraction of tumors from digital mammograms
11.segmentation and feature extraction of tumors from digital mammograms11.segmentation and feature extraction of tumors from digital mammograms
11.segmentation and feature extraction of tumors from digital mammograms
 
IRJET- Brain Tumor Detection using Digital Image Processing
IRJET- Brain Tumor Detection using Digital Image ProcessingIRJET- Brain Tumor Detection using Digital Image Processing
IRJET- Brain Tumor Detection using Digital Image Processing
 
Interactive liver tumor segmentation using
Interactive liver tumor segmentation usingInteractive liver tumor segmentation using
Interactive liver tumor segmentation using
 
Kh2417561758
Kh2417561758Kh2417561758
Kh2417561758
 
A NOVEL APPROACH FOR FEATURE EXTRACTION AND SELECTION ON MRI IMAGES FOR BRAIN...
A NOVEL APPROACH FOR FEATURE EXTRACTION AND SELECTION ON MRI IMAGES FOR BRAIN...A NOVEL APPROACH FOR FEATURE EXTRACTION AND SELECTION ON MRI IMAGES FOR BRAIN...
A NOVEL APPROACH FOR FEATURE EXTRACTION AND SELECTION ON MRI IMAGES FOR BRAIN...
 
V180304142149
V180304142149V180304142149
V180304142149
 
Multistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s DiseaseMultistage Classification of Alzheimer’s Disease
Multistage Classification of Alzheimer’s Disease
 
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...
 
International Journal of Engineering Research and Development
International Journal of Engineering Research and DevelopmentInternational Journal of Engineering Research and Development
International Journal of Engineering Research and Development
 

Semelhante a Neeta tiwari paper

Artificial neural network based cancer cell classification
Artificial neural network based cancer cell classificationArtificial neural network based cancer cell classification
Artificial neural network based cancer cell classification
Alexander Decker
 
11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification
Alexander Decker
 
11.texture feature based analysis of segmenting soft tissues from brain ct im...
11.texture feature based analysis of segmenting soft tissues from brain ct im...11.texture feature based analysis of segmenting soft tissues from brain ct im...
11.texture feature based analysis of segmenting soft tissues from brain ct im...
Alexander Decker
 
SVM Classifiers at it Bests in Brain Tumor Detection using MR Images
SVM Classifiers at it Bests in Brain Tumor Detection using MR ImagesSVM Classifiers at it Bests in Brain Tumor Detection using MR Images
SVM Classifiers at it Bests in Brain Tumor Detection using MR Images
ijtsrd
 

Semelhante a Neeta tiwari paper (20)

PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TR...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE  RETRIEVAL FOR CURVELET, CONTOURLET  TR...PERFORMANCE ANALYSIS OF TEXTURE IMAGE  RETRIEVAL FOR CURVELET, CONTOURLET  TR...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TR...
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
 
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
PERFORMANCE ANALYSIS OF TEXTURE IMAGE RETRIEVAL FOR CURVELET, CONTOURLET TRAN...
 
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGESAN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
AN ANN BASED BRAIN ABNORMALITY DETECTION USING MR IMAGES
 
Literature Survey on Detection of Brain Tumor from MRI Images
Literature Survey on Detection of Brain Tumor from MRI Images Literature Survey on Detection of Brain Tumor from MRI Images
Literature Survey on Detection of Brain Tumor from MRI Images
 
M010128086
M010128086M010128086
M010128086
 
Review of Classification algorithms for Brain MRI images
Review of Classification algorithms for Brain MRI imagesReview of Classification algorithms for Brain MRI images
Review of Classification algorithms for Brain MRI images
 
Brain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive BoostingBrain Tumor Detection and Classification using Adaptive Boosting
Brain Tumor Detection and Classification using Adaptive Boosting
 
Artificial neural network based cancer cell classification
Artificial neural network based cancer cell classificationArtificial neural network based cancer cell classification
Artificial neural network based cancer cell classification
 
11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification11.artificial neural network based cancer cell classification
11.artificial neural network based cancer cell classification
 
Automatic Detection of Radius of Bone Fracture
Automatic Detection of Radius of Bone FractureAutomatic Detection of Radius of Bone Fracture
Automatic Detection of Radius of Bone Fracture
 
H0114857
H0114857H0114857
H0114857
 
K011138084
K011138084K011138084
K011138084
 
11.texture feature based analysis of segmenting soft tissues from brain ct im...
11.texture feature based analysis of segmenting soft tissues from brain ct im...11.texture feature based analysis of segmenting soft tissues from brain ct im...
11.texture feature based analysis of segmenting soft tissues from brain ct im...
 
SVM Classifiers at it Bests in Brain Tumor Detection using MR Images
SVM Classifiers at it Bests in Brain Tumor Detection using MR ImagesSVM Classifiers at it Bests in Brain Tumor Detection using MR Images
SVM Classifiers at it Bests in Brain Tumor Detection using MR Images
 
DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...
DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...
DIRECTIONAL CLASSIFICATION OF BRAIN TUMOR IMAGES FROM MRI USING CNN-BASED DEE...
 
IRJET- Brain Tumor Detection and Classification with Feed Forward Back Propag...
IRJET- Brain Tumor Detection and Classification with Feed Forward Back Propag...IRJET- Brain Tumor Detection and Classification with Feed Forward Back Propag...
IRJET- Brain Tumor Detection and Classification with Feed Forward Back Propag...
 
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...IRJET-  	  An Efficient Brain Tumor Detection System using Automatic Segmenta...
IRJET- An Efficient Brain Tumor Detection System using Automatic Segmenta...
 
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
BRAIN TUMOR CLASSIFICATION IN 3D-MRI USING FEATURES FROM RADIOMICS AND 3D-CNN...
 
Brain Tumor Detection using Clustering Algorithms in MRI Images
Brain Tumor Detection using Clustering Algorithms in MRI ImagesBrain Tumor Detection using Clustering Algorithms in MRI Images
Brain Tumor Detection using Clustering Algorithms in MRI Images
 

Mais de Alexander Decker

Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...
Alexander Decker
 
A usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websitesA usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websites
Alexander Decker
 
A universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banksA universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banks
Alexander Decker
 
A unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized dA unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized d
Alexander Decker
 
A trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistanceA trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistance
Alexander Decker
 
A transformational generative approach towards understanding al-istifham
A transformational  generative approach towards understanding al-istifhamA transformational  generative approach towards understanding al-istifham
A transformational generative approach towards understanding al-istifham
Alexander Decker
 
A time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibiaA time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibia
Alexander Decker
 
A therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school childrenA therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school children
Alexander Decker
 
A theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banksA theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banks
Alexander Decker
 
A systematic evaluation of link budget for
A systematic evaluation of link budget forA systematic evaluation of link budget for
A systematic evaluation of link budget for
Alexander Decker
 
A synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjabA synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjab
Alexander Decker
 
A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...
Alexander Decker
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incremental
Alexander Decker
 
A survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniquesA survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniques
Alexander Decker
 
A survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo dbA survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo db
Alexander Decker
 
A survey on challenges to the media cloud
A survey on challenges to the media cloudA survey on challenges to the media cloud
A survey on challenges to the media cloud
Alexander Decker
 
A survey of provenance leveraged
A survey of provenance leveragedA survey of provenance leveraged
A survey of provenance leveraged
Alexander Decker
 
A survey of private equity investments in kenya
A survey of private equity investments in kenyaA survey of private equity investments in kenya
A survey of private equity investments in kenya
Alexander Decker
 
A study to measures the financial health of
A study to measures the financial health ofA study to measures the financial health of
A study to measures the financial health of
Alexander Decker
 

Mais de Alexander Decker (20)

Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...Abnormalities of hormones and inflammatory cytokines in women affected with p...
Abnormalities of hormones and inflammatory cytokines in women affected with p...
 
A validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale inA validation of the adverse childhood experiences scale in
A validation of the adverse childhood experiences scale in
 
A usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websitesA usability evaluation framework for b2 c e commerce websites
A usability evaluation framework for b2 c e commerce websites
 
A universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banksA universal model for managing the marketing executives in nigerian banks
A universal model for managing the marketing executives in nigerian banks
 
A unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized dA unique common fixed point theorems in generalized d
A unique common fixed point theorems in generalized d
 
A trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistanceA trends of salmonella and antibiotic resistance
A trends of salmonella and antibiotic resistance
 
A transformational generative approach towards understanding al-istifham
A transformational  generative approach towards understanding al-istifhamA transformational  generative approach towards understanding al-istifham
A transformational generative approach towards understanding al-istifham
 
A time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibiaA time series analysis of the determinants of savings in namibia
A time series analysis of the determinants of savings in namibia
 
A therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school childrenA therapy for physical and mental fitness of school children
A therapy for physical and mental fitness of school children
 
A theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banksA theory of efficiency for managing the marketing executives in nigerian banks
A theory of efficiency for managing the marketing executives in nigerian banks
 
A systematic evaluation of link budget for
A systematic evaluation of link budget forA systematic evaluation of link budget for
A systematic evaluation of link budget for
 
A synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjabA synthetic review of contraceptive supplies in punjab
A synthetic review of contraceptive supplies in punjab
 
A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...A synthesis of taylor’s and fayol’s management approaches for managing market...
A synthesis of taylor’s and fayol’s management approaches for managing market...
 
A survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incrementalA survey paper on sequence pattern mining with incremental
A survey paper on sequence pattern mining with incremental
 
A survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniquesA survey on live virtual machine migrations and its techniques
A survey on live virtual machine migrations and its techniques
 
A survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo dbA survey on data mining and analysis in hadoop and mongo db
A survey on data mining and analysis in hadoop and mongo db
 
A survey on challenges to the media cloud
A survey on challenges to the media cloudA survey on challenges to the media cloud
A survey on challenges to the media cloud
 
A survey of provenance leveraged
A survey of provenance leveragedA survey of provenance leveraged
A survey of provenance leveraged
 
A survey of private equity investments in kenya
A survey of private equity investments in kenyaA survey of private equity investments in kenya
A survey of private equity investments in kenya
 
A study to measures the financial health of
A study to measures the financial health ofA study to measures the financial health of
A study to measures the financial health of
 

Último

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
Deploy with confidence: VMware Cloud Foundation 5.1 on next gen Dell PowerEdg...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 

Neeta tiwari paper

  • 1. Computer Engineering and Intelligent Systems www.iiste.org ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online) Vol.4, No.9, 2013 33 Multi-class Multi-label Classification and Detection of Lumbar Intervertebral Disc Degeneration MR Images using Decision Tree Classifiers Isam Abu-Qasmieh* Department of Biomedical Systems and Informatics Engineering, Yarmouk University, PO box 566, Irbid 21163, Jordan * E-mail of the corresponding author: iabuqasmieh@yu.edu.jo Abstract Evidence-based medicine decision-making based on computer-aided methods is a new direction in modern healthcare. Data Mining Techniques in Computer-Aided Diagnosis (CAD) are powerful and widely used tools for efficient and automated classification, retrieval, and pattern recognition of medical images. They become highly desirable for the healthcare providers because of the massive and increasing volume of intervertebral disc degeneration images. A fast and efficient classification and retrieval system using query images with high degree of accuracy is vital. The method proposed in this paper for automatic detection and classification of lumbar intervertebral disc degeneration MRI-T2 images makes use of texture-based pattern recognition in data mining. A dataset of 181segmented ROIs, corresponding to 89 normal and 92 degenerated (narrowed) discs at different vertebral level, was analyzed and textural features (contrast, entropy, and energy) were extracted from each disc- ROI. The extracted features were employed in the design of a pattern recognition system using C4.5 decision tree classifier. The system achieved a classification accuracy of 93.33% in designing a Multi-class Multi-label classification system based on the affected disc position. This work combined with its higher accuracy is considered a valuable knowledge for orthopedists in their diagnosis of lumbar intervertebral disc degeneration in T2-weighted Magnetic Resonance sagittal Images and for automated annotation, archiving, and retrieval of these images for later on usage. Keywords: Data Mining, Image Processing, Lumbar Intervertebral Disc Degeneration, MRI-T2, Decision Trees, Multi-class Multi-label Classification. 1. Introduction Degenerative lumbar discs have been suggested as a potential cause of lower back pain [1, 2]. Therefore, development of a classification system that can detect degeneration at different stages and different positions (discs), helps in archiving and retrieval of Intervertebral Disc Degeneration MR Images. It also provides a robust tool for optimizing the diagnostic decision making. Clinically, T2-weighted magnetic resonance imaging (MRI) at sagittal plane is the modality of choice for diagnosing Degenerative Disc Disease (DDD) where changes in disc MRI signal accurately reflect the presence or absence of degenerative changes seen on discography in patients with low-back pain [3]. Machine learning techniques have been widely and successfully applied in Computer-Aided Diagnosis [4] [5] [6]. Data mining as a machine learning technique has been used as a powerful tool for medical image classification [7-13]. In this study, the decision-tree model is used for classification of the intervertebral disc degeneration. Computerized approaches, based on disc morphology, have been proposed for the characterization of intervertebral disc degeneration [14, 15]. Texture has been widely used in image classification with an application of image retrieval [16]. The most commonly extracted features are Contrast, Energy, Entropy, Homogeneity, and Correlation [17]. In the present study, a texture-based pattern recognition system is proposed for the assessment of lumbar intervertebral disc degeneration. Textural features are generated from MR images of normal and degenerated lumbar intervertebral discs and the extracted features (contrast, energy, and entropy) of the preprocessed MR images are employed in the design of a classification scheme, used for the discrimination between normal and degenerated disc and which disc is the affected one. MR image preprocessing includes image denoising using Gaussian filter, image enhancement using histogram equalization, and image edge detection using Canny edge detection algorithm.
  • 2. Computer Engineering and Intelligent Systems www.iiste.org ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online) Vol.4, No.9, 2013 34 Decision trees are usually used for classification to predict what group a case belongs to [18]. The decision trees generated by C4.5 [19] are used for classification in this study. J48 is an open source Java implementation of the C4.5 algorithm in the Weka data mining tool [20]. J48 in WEKA refers to Quinlan’s C4.5 algorithm with optional pruning. J48 is used to build decision trees from a set of labeled training data using the concept of information entropy. To split the data at each stage of the tree construction, a test is performed to select an attribute with the lowest entropy [21]. 2. Methodology 181 T2-MR sagittal images, depicting the lower lumbar spine, were obtained from a local public hospital, corresponding to 89 normal and 92 degenerated discs. The data is randomly divided into 151 training and 30 testing sets. The images were subjected to preprocessing before starting of training and testing. Initially, all images have been resized to a common resolution (256 x 256) in order to reduce biasing effects. In each of the resized spine images, the region of interest (ROI) were segmented at the lumbar intervertebral discs region by cropping all images automatically at fixed coordinates, assuming that the acquired spine sagittal images are typically depicting the spine discs at the same tissue slice plane and scene (which is the case most of the time). The segmented partition of each image has been histogram equalized to improve the images contrast and to expand the intensity values range. Image denoising and smoothing using Gaussian filtering is performed. Then an embedded operation of Canny edge detection operator which was applied to each segmented and enhanced partition to extract the image boundaries as thin single-pixel lines. Fig1 shows the preprocessing stages of the spine MR image as a primary step in the pattern recognition adopted system which is then followed by features extraction step. The classification-based automatic image annotation was performed by extracting global texture features using Gray level co-occurrence matrix. The selected global features are entropy, contrast, and energy. The extracted features are then stored in excel spreadsheet used by Quinlan’s C4.5 classifier to construct the Multi-class Multi-label annotation model. The model is used to classify the lumbar disc images as normal or degenerated and if it is degenerated a sub-classification is made based on which disc is affected. The J48 decision tree generated from WEKA tool was used as an implementation of Quinlan’s C4.5 algorithm. 3. Results and Discussion 151 multi-labeled T2-MR Images where randomly selected for J48 decision tree training algorithm with optional pruning. The J48 pruned tree is converted into if-then-else rules from the set of predefined labeled training images in order to get a decision tree that minimizes the error rate and thus producing the highest number of correctly classified labeled images. The resultant Decision tree model from the input features is illustrated in Fig 2. The Decision tree model can be effectively used to determine the most important attributes in the examined dataset. The attribute which maximizes the gain ratio or information gain the most is selected as the root node or top node. The value of the attribute at which this gain occurs is obviously the split point. As we notice from the tree model, the root node is the energy attribute. The output report of the decision tree's if-then rules implemented on the testing preprocessed images is shown in Table1. To generate annotations, each image passes through a series of three-class classifiers for each diagnosis. In our annotation model, each word is assigned independently by the decision tree obtained for each diagnosis from texture feature attributes namely, contrast, entropy, and energy. Table 2. illustrates the results of the J48 classifier, here 151 spine images are taken for training and 30 images are taken for the testing in both normal and degenerated cases. The results in Table 2. show that the proposed system gives an accuracy of 93.33 percent. The k-means algorithm is the most commonly used partitional clustering algorithm because it can be easily implemented and is the most time-efficient algorithm in the field of clustering. The central concept in the k- means algorithm is the centroid [22]. In data clustering, the centroid of a set of data observations is the one observation that’s most representative of the group. Fig3 shows that the result of k-means clustering Methods using WEKA tool gives a well separated (non-overlapping) clusters for images with different diagnosis. Michopoulou et al [23] has achieved an overall classification accuracy of 93.8% in their work of designing a
  • 3. Computer Engineering and Intelligent Systems www.iiste.org ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online) Vol.4, No.9, 2013 35 classification system for Cervical intervertebral discs, where they used the Least Squares Minimum Distance Classifier in combination with four textural features in order to classify the cervical discs as normal or degenerated in 32 saggital magnetic resonance images. This accuracy was obtained by using the same set of images for training and for testing as well. In our work we have used two different datasets for training and testing (151 images for training and another 30 images for testing) which gives our model a broadest attainable generality of applicability. Moreover, our model is a Multi-class Multi-label annotation model which sub- classifies the degenerated discs based on which disc in the lumbar region is affected. 4. Conclusion The proposed classifier has been successfully applied in constructing a decision tree model with promising degree of accuracy for Multi-class Multi-label intervertebral disc degeneration T2-MR images classification, detection, and retrieval. This accuracy is assumed to manifest itself in building a decision support system for diagnosis of lumbar degenerative disc disease. References 1. Kramer J. (2008). Intervertebral disk disease, causes, diagnosis, treatment and prophylaxis. (3rd ed.). New York: Thieme Medical Publishers 2. Michael A. Adams, Peter J. Roughley (2006), What is Intervertebral Disc Degeneration, and What Causes It?. Spine. 31(18):2151-2161 3. Thalgott JS, Albert TJ, Vaccaro AR, Aprill CN, Giuffre JM, Drake JS, Henke JP (2004), A new classification system for degenerative disc disease of the lumbar spine based on magnetic resonance imaging, provocative discography, plain radiographs and anatomic considerations. Spine 4:167S–172S 4. T. Hothorn and B. Lausen (2003), Bagging tree classifiers for laser scanning images: a data- and simulation- based strategy. Artificial Intelligence in Medicine, vol.27, no.1, pp.65-79 5. A. Sharkey, N. Sharkey, and S. Cross (1998), Adapting an ensemble approach for the diagnosis of breast cancer. In Proceedings of the 6th International Conference on Artificial Neural Networks, Skovd, Sweden, pp. 281-286 6. Z.-H. Zhou, Y. Jiang, Y.-B. Yang, and S.-F. Chen (2002), Lung cancer cell identification based on artificial neural network ensembles. Artificial Intelligence in Medicine, vol.24, no.1, pp.25-36 7. S. Lai, X. Li, and W. Bischof (1989). On techniques for detecting circumscribed masses in mammograms. IEEE Trans. Medical Imaging, 8(4):377–386 8. T.Wang and N. Karayiannis (1998). Detection of microcalcification in digitalmammograms using wavelets. IEEE Trans. Medical Imaging, 17(4):498–509 9. I. Christoyianni et al (2000). Fast detection of masses in computer-aided mammography. IEEE Signal Processing Magazine, pages 54–64, Jan 2000 10. Maria-Luiza Antonie, Database, Maria-luiza Antonie (2001). Application of Data Mining Techniques for Medical Image Classification. In Proc. of Second Intl. Workshop on Multimedia Data Mining (MDM/KDD’2001) in conjunction with Seventh ACM SIGKDD. 11. P.Rajendran, M.Madheswaran (2009). An Improved Image Mining Technique For Brain Tumor Classification Using Efficient classifier. (IJCSIS) International Journal of Computer Science and Information Security, Vol. 6, No. 3 12. Wen-Jia Kuo, Ruey-Feng Chang, Dar-Ren Chen, and Cheng Chun Lee (2001). Data mining with decision trees for diagnosis of breast tumor in medical ultrasonic images. Breast Cancer Research and Treatment 66: 51–57 13. Ada, Rajneet Kaur (2013). A Study of Detection of Lung Cancer Using Data Mining Classification Techniques. International Journal of Advanced Research in Computer Science and Software Engineering. Volume 3, Issue 3, March 2013. 14. Chamarthy P, Stanley RJ, Cizek G, Long R, Antani S, Thoma G (2004). Image analysis techniques for characterizing disc space narrowing in cervical vertebrae interfaces, Comput. Med. Imaging Graph. 28(1-2):39- 50 15. M. Tsai, S.B. Jou and M.S. Hsieh (2002). A methods for lumbar intervertebral disc diagnosis based on image analysis of transverse sections, Comput. Med. Imaging Graph. 26-369 16. Manjunath B.S, Ma W (1996). Texture Features for browsing and retrieval of image data. IEEE Transaction on Patt. Anal. And Machine Intell. pp 837-842 17. E R Vimina and K Poulose Jacob (2013). A Sub-block Based Image Retrieval Using Modified Integrated Region Matching. IJCSI International Journal of Computer Science Issues, Vol. 10, Issue 1, No 2, January 2013 ISSN
  • 4. Computer Engineering and Intelligent Systems www.iiste.org ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online) Vol.4, No.9, 2013 36 (Print): 1694-0784 | ISSN (Online): 1694-0814. 18. Dar-Ren Chen, Wen-Jia Kuo, Ruey-Feng Chan, Woo Kyung Moon, and Cheng Chun Lee (2002). Use of the Bootstrap Technique with Small Training Sets for Computer-Aided Diagnosis in Breast Ultrasound. Ultrasound in Med. & Biol. Vol. 28, No. 7, pp. 897–902 19. Quinlan, J. R (1994). C4.5: Programs for Machine Learning, Machine Learning. September, Volume 16, Issue 3, pp 235-240 20. Ghofran Othoum and Wadee Al-Halabi (2011). Predicting Breast Cancer Survivability Rates For data collected from Saudi Arabia Registries. PROCEEDINGS OF THE 2011 INTERNATIONAL CONFERENCE ON ARTIFICIAL INTELLIGENCE. Pages: 918-922. 21. Bishop C.M. (2006). Pattern Recognition and Machine Learning. Berlin: Springer-Verlag 22. Michopoulou S, Boniatis I, Costaridou L, Cavouras D, Panagiotopoulos E, Panayiotakis G (2009). Computer assisted characterization of cervical intervertebral disc degeneration in MRI. Journal of Instrumentation. 4(2009) P05022 Table 1. If-then rules of the adapted decision tree algorithm. The J48 pruned tree is converted into if-then-else rules from the set of predefined labeled training.
  • 5. Computer Engineering and Intelligent Systems www.iiste.org ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online) Vol.4, No.9, 2013 37 Table 2. The output report of the accuracy result after model training. The evaluation on a test dataset consisting of 30 images. The result shows an accuracy of 93.33%. Fig1. The stage T2-MR spine image preprocessing. a) The resized original image., b) Cropped image at the region of Lumbar vertebral region, c)Histogram equalized image of the cropped image in b. and d) Canny edge detection of c.
  • 6. Computer Engineering and Intelligent Systems www.iiste.org ISSN 2222-1719 (Paper) ISSN 2222-2863 (Online) Vol.4, No.9, 2013 38 Fig 2. Output decision tree using J48 algorithm. Figure 2 shows the value of the attribute at which information gain occurs most often which is energy feature. The disc's symbol shown in the figure means the vertebra that is below the disc, for example S1 means the disc known as L5-S1. Fig 3. k-means clustering method in WEKA for energy feature. The x-axis indicates diagnosis whether it is normal with "no" label" or degenerated labeled with the affected disc, and y-axis is for energy. The results show that clusters of normal and upnormal are very well separated.
  • 7. This academic article was published by The International Institute for Science, Technology and Education (IISTE). The IISTE is a pioneer in the Open Access Publishing service based in the U.S. and Europe. The aim of the institute is Accelerating Global Knowledge Sharing. More information about the publisher can be found in the IISTE’s homepage: http://www.iiste.org CALL FOR JOURNAL PAPERS The IISTE is currently hosting more than 30 peer-reviewed academic journals and collaborating with academic institutions around the world. There’s no deadline for submission. Prospective authors of IISTE journals can find the submission instruction on the following page: http://www.iiste.org/journals/ The IISTE editorial team promises to the review and publish all the qualified submissions in a fast manner. All the journals articles are available online to the readers all over the world without financial, legal, or technical barriers other than those inseparable from gaining access to the internet itself. Printed version of the journals is also available upon request of readers and authors. MORE RESOURCES Book publication information: http://www.iiste.org/book/ Recent conferences: http://www.iiste.org/conference/ IISTE Knowledge Sharing Partners EBSCO, Index Copernicus, Ulrich's Periodicals Directory, JournalTOCS, PKP Open Archives Harvester, Bielefeld Academic Search Engine, Elektronische Zeitschriftenbibliothek EZB, Open J-Gate, OCLC WorldCat, Universe Digtial Library , NewJour, Google Scholar