SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 11 Issue: 02 | Feb 2024 www.irjet.net p-ISSN: 2395-0072
© 2024, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 77
BRAIN TUMOUR DETECTION AND
CLASSIFICATION
Aryan Galande1, Suraj Mohite2, Pavan Thorat3, Prof. Rajani Jadhav4
1Aryan Galande: Student, Dept. of Computer Engineering, PICT Pune.
2Suraj Mohite: Student, Dept. of Computer Engineering, PICT Pune.
3Pavan Thorat: Student, Dept. of Computer Engineering, PICT Pune.
4Prof. Rajani Jadhav: Professor, Dept. of Computer Engineering, PICT Pune.
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - Cancer is one of the largest health problems
the world faces today, and early detection is key to better
patient outcomes. Traditional tumour detection methods
sometimes involve intrusive procedures and have
disadvantages. The integration of Artificial Intelligence (AI)
and Machine Learning (ML) has led to breakthrough
developments in the field of medical diagnostics in recent
years, particularly in the identification of malignant
tumours. This research provides a thorough analysis of the
application of AI and ML techniques in the early diagnosis
and detection of cancer. Keywords—Cancer Detection,
Tumor Detection, Artificial Intelligence, Machine Learning,
Medical Imaging, Radiology, Healthcare, Early Diagnosis.
Key Words: Cancer Detection, Tumour Detection, Artificial
Intelligence, Machine Learning, Medical Imaging ,
Radiology, Healthcare, Early Diagnosis .
1.INTRODUCTION
A crucial area of medical research and clinical practice is
the detection of cancer in the brain. This field focuses on
the identification and diagnosis of tumours that originate
inside the central nervous system, which includes the
brain and spinal cord. Brain tumours, commonly referred
to as brain cancer, can be malignant (cancerous) or benign
(noncancerous). Early brain cancer detection is essential
for successful treatment and better patient outcomes. The
following are some important details about brain cancer
detection: Different Brain Tumour Types: Brain tumours
are categorized according to their origin, location, and
level of malignancy. Whereas secondary brain tumours
originate from cancer that has progressed to the brain
from other parts of the body, primary brain tumours
originate in the brain or spinal cord. Brain cancer
symptoms can vary greatly and include weakness,
eyesight issues, altered behaviour or cognitive function,
chronic headaches, and seizures. Due to the mild and non-
specific nature of these symptoms, early identification is
frequently difficult. Diagnostic Tools: A mix of diagnostic
tools and medical imaging techniques, such as magnetic
resonance imaging (MRI), computed tomography (CT),
and positron emission tomography (PET) scans, are
commonly used to detect brain cancer. The presence,
location, and size of brain tumours can be seen with the
aid of these imaging investigations. Biopsy: To obtain a
conclusive diagnosis, a biopsy often entails taking a tiny
sample of the tumour tissue to be examined under a
microscope. This aids in identifying the exact type of
tumour and whether it is malignant. Blood Tests: New
studies are investigating the possibilities of liquid
biopsies, which entail testing blood samples for the
presence of DNA mutations linked to brain cancer or
tumor-specific markers. Developments in Imaging: The
capacity to accurately map brain tumours and evaluate
their effects on surrounding brain structures has been
enhanced by developments in medical imaging technology,
including diffusion tensor imaging and functional
magnetic resonance imaging. Options for Treatment:
Surgery, radiation therapy, chemotherapy,
immunotherapy, targeted therapy, or a mix of these may
be used to treat brain cancer. Options for less invasive
treatment are frequently made possible by early detection.
Research and Innovation: Developing novel treatments for
brain tumours and enhancing the precision and
noninvasiveness of diagnostic methods are the two main
objectives of continuous efforts in the field of brain cancer
detection. Early Diagnosis and Prognosis: Early detection
of brain cancer is critical to improving patient quality of
life and raising the chance of a successful treatment plan.
Moreover, accurate prognosis is necessary to tailor
treatment plans to individual patients.
1.1 Literature Survey
In a 2021 study by Q.D. Buchlak et al., the applications of
machine learning in neuroimaging for glioma detection
and classification were explored. This research offers
valuable insights into the use of AI specifically for glioma
diagnosis, a common and aggressive type of brain tumor.
Understanding the specific methods and algorithms
employed for glioma diagnosis is essential for
comprehending the broader landscape of brain tumor
detection. M.K. Abd-Ellah et al.'s 2019 review provides a
comprehensive overview of brain tumor diagnosis from
MRI images, with a focus on the practical implications.
This study offers a holistic perspective on the challenges
and opportunities associated with using MRI for brain
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 11 Issue: 02 | Feb 2024 www.irjet.net p-ISSN: 2395-0072
© 2024, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 78
tumor diagnosis, shedding light on the real-world
applications of this technology. The same work by M.K.
Abd-Ellah et al. emphasizes lessons learned from the
application of MRI in brain tumor diagnosis. The lessons
derived from this research are crucial for understanding
the evolving landscape of brain tumor diagnosis and serve
as valuable guidance for future studies. V.P. Grover et al.'s
2015 publication on magnetic resonance imaging
principles and techniques is instrumental in providing a
fundamental understanding of MRI, which forms the basis
for brain tumor imaging. Understanding the underlying
principles of MRI is essential for interpreting the results of
machine learning models applied to MRI data. In a 2000
study by H. Tang et al., MRI brain image segmentation
using multi-resolution edge detection and region selection
techniques was discussed. This study provides insights
into the image processing approaches used in the context
of brain tumor detection and their integration with
machine learning for more accurate tumor delineation. In
a 2010 study by K. Somasundaram et al., a fully automatic
brain extraction algorithm for axial T2-weighted MRI
images was presented. This addresses a crucial
preprocessing step for brain tumor diagnosis. The
automatic extraction of the brain region is an essential
component of the pipeline, and this study contributes to
the technical aspects of the process.
1.2 Methodology
A. Detecting brain tumors using a Support Vector
Machine (SVM) algorithm involves several steps, from data
collection and preprocessing to model training and
evaluation. Here's a step-by-step algorithm on how to
detect brain tumor using SVM:
2. ALGORITHM
1. Start
2. Data Collection
3. Data Preprocessing: Process the MRI images to prepare
them for training and testing.
4. Feature Extraction: Depending on your dataset and the
nature of the images, you may want to extract relevant
features from the images. Some common feature
extraction methods include Histogram of Oriented
Gradients (HOG) or Local Binary Patterns (LBP). 5. Feature
Vector Generation: Convert the processed or extracted
features into feature vectors that can be fed into the SVM.
Each image should be represented as a set of numerical
features.
6. Labeling: Assign labels to your feature vectors, such as 0
for non-tumor and 1 for tumor. Ensure that your labels
match the images in the training set.
7. SVM Model Selection: Choose the appropriate type of
SVM (linear, polynomial, radial basis function, etc.) based
on your dataset and problem. You can experiment with
different kernel functions to see which one works best for
your problem.
8. Model Training: Train the SVM model on the labeled
training data. The SVM algorithm will learn the decision
boundary that best separates the tumor and non-tumor
classes. You can use libraries like scikit-learn in Python for
SVM implementation.
9. Model Evaluation: Assess the performance of your SVM
model using appropriate evaluation metrics. Common
evaluation metrics for binary classification tasks include
accuracy, precision, recall, F1-score, and ROC curve
analysis.
10. Hyperparameter Tuning: Fine-tune the
hyperparameters of the SVM model, such as the
regularization parameter (C) or the kernel parameters, to
optimize the model's performance. You can use techniques
like cross-validation for this.
11. Testing: Use the trained SVM model to predict tumor
vs. non-tumor labels on your test dataset.
12. Post-processing: You can apply post-processing
techniques to improve the model's output, such as
thresholding to reduce false positives or false negatives.
13. Visualization: Visualize the SVM's decision boundary
or important features, which can help understand the
model's decision-making process.
14. Deployment
15. If the model performs well, we can deploy it for real
world brain tumor detection, possibly in a medical setting.
16. End
Using the above algorithm, we can detect samples
containing brain tumour.
2. EXPERIMENTS AND RESULTS
For this experiment, we utilized a diverse dataset
comprising MRI images of the brain, including both
cancerous and non-cancerous cases. The dataset was
carefully curated to encompass a wide range of tumor
types, sizes, and locations, ensuring the diversity necessary
for training and evaluating the SVM model effectively.
Fig. 2. Samples tested for no tumor.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 11 Issue: 02 | Feb 2024 www.irjet.net p-ISSN: 2395-0072
© 2024, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 79
The chosen dataset includes two types of data:-
1)Training Data
2)Testing Data
Each of these divisions of datasets includes MRI Scansof
Human Brain having no tumor and MRI Scans of Human
Brain having Pituitary Tumor.
The SVM Model is trained on the training data of chosen
dataset, Fig 2 shows results of testing of SVM model on the
testing data of chosen dataset for no tumor.
Fig. 3. Samples tested for pituitary tumor.
Fig 3 shows results of testing of SVM model on the
testingdata of chosen dataset for pituitary tumor.
Fig. 4. Testing Results.
After testing the model, we got the training score of
0.9887 andtesting score of 0.9592.
3. CONCLUSIONS
In conclusion, a promising direction in the field of medical
diagnostics is the application of Support Vector Machines
(SVM) for brain tumour detection. SVMs are a useful tool
for accurate classification, but there are issues that need to
be resolved, including issues with generalization, data
limitations, and ethics.
Investigating deep learning methods, multimodal data
fusion, and real-time detection systems, among other
possibilities, can significantly improve the efficiency and
[1] Q.D. Buchlak et al. Machine learning applications to
neuroimaging for glioma detection and classification: an
artificial intelligence augmented systematic review J. Clin.
Neurosci. (2021)
[2] M.K. Abd-Ellah et al. A review on brain tumor diagnosis
from MRI images: practical implications, key
achievements, and lessons learned Magn. Reson. Imag.
(2019)
[3] M.K. Abd-Ellah et al. A review on brain tumor diagnosis
from MRI images: practical implications, key
achievements, and lessons learned Magn. Reson. Imag.
(2019)
[4] V.P. Grover et al. Magnetic resonance imaging:
principles and techniques: lessons for clinicians Journal of
clinical and experimental hepatology (2015)
[5]. H. Tang et al. MRI brain image segmentation by
multiresolution edge detection and region selection
Comput. Med. Imag. Graph. (2000)
[6] K. Somasundaram et al. Fully automatic brain
extraction algorithm for axial T2-weighted magnetic
resonance images Comput. Biol. Med. (2010)
accuracy of tumour detection. Moreover, collaboration
between AI and medical experts is necessary for the
successful integration of SVM-based tumour detection in
clinical settings. These developments herald a bright
future for improving brain tumour identification, which
will eventually lead to better patient outcomes and care.
REFERENCES
Ad

More Related Content

Similar to BRAIN TUMOUR DETECTION AND CLASSIFICATION (20)

IRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLPIRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET Journal
 
IRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLPIRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET Journal
 
IRJET- Novel Approach for Detection of Brain Tumor :A Review
IRJET-  	  Novel Approach for Detection of Brain Tumor :A ReviewIRJET-  	  Novel Approach for Detection of Brain Tumor :A Review
IRJET- Novel Approach for Detection of Brain Tumor :A Review
IRJET Journal
 
IRJET - Classification of Cancer Images using Deep Learning
IRJET -  	  Classification of Cancer Images using Deep LearningIRJET -  	  Classification of Cancer Images using Deep Learning
IRJET - Classification of Cancer Images using Deep Learning
IRJET Journal
 
Lung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask IntegrationLung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask Integration
IRJET Journal
 
Survey on “Brain Tumor Detection Using Deep Learning
Survey on “Brain Tumor Detection Using Deep LearningSurvey on “Brain Tumor Detection Using Deep Learning
Survey on “Brain Tumor Detection Using Deep Learning
IRJET Journal
 
Brain Tumor Detection From MRI Image Using Deep Learning
Brain Tumor Detection From MRI Image Using Deep LearningBrain Tumor Detection From MRI Image Using Deep Learning
Brain Tumor Detection From MRI Image Using Deep Learning
IRJET Journal
 
BRAIN TUMOR DETECTION
BRAIN TUMOR DETECTIONBRAIN TUMOR DETECTION
BRAIN TUMOR DETECTION
IRJET Journal
 
IRJET- Lung Cancer Nodules Classification and Detection using SVM and CNN...
IRJET-  	  Lung Cancer Nodules Classification and Detection using SVM and CNN...IRJET-  	  Lung Cancer Nodules Classification and Detection using SVM and CNN...
IRJET- Lung Cancer Nodules Classification and Detection using SVM and CNN...
IRJET Journal
 
IRJET- Brain Tumor Detection using Convolutional Neural Network
IRJET- Brain Tumor Detection using Convolutional Neural NetworkIRJET- Brain Tumor Detection using Convolutional Neural Network
IRJET- Brain Tumor Detection using Convolutional Neural Network
IRJET Journal
 
Brain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNETBrain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNET
IRJET Journal
 
Brain Tumor Classification using EfficientNet Models
Brain Tumor Classification using EfficientNet ModelsBrain Tumor Classification using EfficientNet Models
Brain Tumor Classification using EfficientNet Models
IRJET Journal
 
IRJET- Brain MRI Image Processing & Prediction of Cancer Stage Including ...
IRJET-  	  Brain MRI Image Processing & Prediction of Cancer Stage Including ...IRJET-  	  Brain MRI Image Processing & Prediction of Cancer Stage Including ...
IRJET- Brain MRI Image Processing & Prediction of Cancer Stage Including ...
IRJET Journal
 
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
IRJET Journal
 
Medical Image segmentation from dl .pptx
Medical Image segmentation from dl .pptxMedical Image segmentation from dl .pptx
Medical Image segmentation from dl .pptx
SACHINS902817
 
Prediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningPrediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep Learning
IRJET Journal
 
Simplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real LifeSimplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real Life
Peea Bal Chakraborty
 
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET Journal
 
AI Based Approach for Classification of MultiGrade Tumour in Human Brain
AI Based Approach for Classification of MultiGrade Tumour in Human BrainAI Based Approach for Classification of MultiGrade Tumour in Human Brain
AI Based Approach for Classification of MultiGrade Tumour in Human Brain
IRJET Journal
 
Application of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detectionApplication of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detection
Myat Myint Zu Thin
 
IRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLPIRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET- Brain Tumor Detection using Image Processing, ML & NLP
IRJET Journal
 
IRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLPIRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET - Brain Tumor Detection using Image Processing, ML & NLP
IRJET Journal
 
IRJET- Novel Approach for Detection of Brain Tumor :A Review
IRJET-  	  Novel Approach for Detection of Brain Tumor :A ReviewIRJET-  	  Novel Approach for Detection of Brain Tumor :A Review
IRJET- Novel Approach for Detection of Brain Tumor :A Review
IRJET Journal
 
IRJET - Classification of Cancer Images using Deep Learning
IRJET -  	  Classification of Cancer Images using Deep LearningIRJET -  	  Classification of Cancer Images using Deep Learning
IRJET - Classification of Cancer Images using Deep Learning
IRJET Journal
 
Lung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask IntegrationLung Cancer Detection with Flask Integration
Lung Cancer Detection with Flask Integration
IRJET Journal
 
Survey on “Brain Tumor Detection Using Deep Learning
Survey on “Brain Tumor Detection Using Deep LearningSurvey on “Brain Tumor Detection Using Deep Learning
Survey on “Brain Tumor Detection Using Deep Learning
IRJET Journal
 
Brain Tumor Detection From MRI Image Using Deep Learning
Brain Tumor Detection From MRI Image Using Deep LearningBrain Tumor Detection From MRI Image Using Deep Learning
Brain Tumor Detection From MRI Image Using Deep Learning
IRJET Journal
 
BRAIN TUMOR DETECTION
BRAIN TUMOR DETECTIONBRAIN TUMOR DETECTION
BRAIN TUMOR DETECTION
IRJET Journal
 
IRJET- Lung Cancer Nodules Classification and Detection using SVM and CNN...
IRJET-  	  Lung Cancer Nodules Classification and Detection using SVM and CNN...IRJET-  	  Lung Cancer Nodules Classification and Detection using SVM and CNN...
IRJET- Lung Cancer Nodules Classification and Detection using SVM and CNN...
IRJET Journal
 
IRJET- Brain Tumor Detection using Convolutional Neural Network
IRJET- Brain Tumor Detection using Convolutional Neural NetworkIRJET- Brain Tumor Detection using Convolutional Neural Network
IRJET- Brain Tumor Detection using Convolutional Neural Network
IRJET Journal
 
Brain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNETBrain Tumor Detection and Segmentation using UNET
Brain Tumor Detection and Segmentation using UNET
IRJET Journal
 
Brain Tumor Classification using EfficientNet Models
Brain Tumor Classification using EfficientNet ModelsBrain Tumor Classification using EfficientNet Models
Brain Tumor Classification using EfficientNet Models
IRJET Journal
 
IRJET- Brain MRI Image Processing & Prediction of Cancer Stage Including ...
IRJET-  	  Brain MRI Image Processing & Prediction of Cancer Stage Including ...IRJET-  	  Brain MRI Image Processing & Prediction of Cancer Stage Including ...
IRJET- Brain MRI Image Processing & Prediction of Cancer Stage Including ...
IRJET Journal
 
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...Intracranial-Tumor Detection and Classification System using Convnet and Tran...
Intracranial-Tumor Detection and Classification System using Convnet and Tran...
IRJET Journal
 
Medical Image segmentation from dl .pptx
Medical Image segmentation from dl .pptxMedical Image segmentation from dl .pptx
Medical Image segmentation from dl .pptx
SACHINS902817
 
Prediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep LearningPrediction of Cognitive Imperiment using Deep Learning
Prediction of Cognitive Imperiment using Deep Learning
IRJET Journal
 
Simplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real LifeSimplified Knowledge Prediction: Application of Machine Learning in Real Life
Simplified Knowledge Prediction: Application of Machine Learning in Real Life
Peea Bal Chakraborty
 
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET Journal
 
AI Based Approach for Classification of MultiGrade Tumour in Human Brain
AI Based Approach for Classification of MultiGrade Tumour in Human BrainAI Based Approach for Classification of MultiGrade Tumour in Human Brain
AI Based Approach for Classification of MultiGrade Tumour in Human Brain
IRJET Journal
 
Application of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detectionApplication of-image-segmentation-in-brain-tumor-detection
Application of-image-segmentation-in-brain-tumor-detection
Myat Myint Zu Thin
 

More from IRJET Journal (20)

Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
IRJET Journal
 
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
IRJET Journal
 
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ..."Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
IRJET Journal
 
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
IRJET Journal
 
Breast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer VisionBreast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer Vision
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 
FIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACHFIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACH
IRJET Journal
 
Kiona – A Smart Society Automation Project
Kiona – A Smart Society Automation ProjectKiona – A Smart Society Automation Project
Kiona – A Smart Society Automation Project
IRJET Journal
 
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
IRJET Journal
 
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
IRJET Journal
 
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based CrowdfundingInvest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
IRJET Journal
 
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
IRJET Journal
 
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUBSPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
IRJET Journal
 
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
IRJET Journal
 
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
IRJET Journal
 
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
IRJET Journal
 
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ..."Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
IRJET Journal
 
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
IRJET Journal
 
Breast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer VisionBreast Cancer Detection using Computer Vision
Breast Cancer Detection using Computer Vision
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...A Novel System for Recommending Agricultural Crops Using Machine Learning App...
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
IRJET Journal
 
Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.Auto-Charging E-Vehicle with its battery Management.
Auto-Charging E-Vehicle with its battery Management.
IRJET Journal
 
Analysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the HeliosphereAnalysis of high energy charge particle in the Heliosphere
Analysis of high energy charge particle in the Heliosphere
IRJET Journal
 
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
IRJET Journal
 
FIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACHFIR filter-based Sample Rate Convertors and its use in NR PRACH
FIR filter-based Sample Rate Convertors and its use in NR PRACH
IRJET Journal
 
Kiona – A Smart Society Automation Project
Kiona – A Smart Society Automation ProjectKiona – A Smart Society Automation Project
Kiona – A Smart Society Automation Project
IRJET Journal
 
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
IRJET Journal
 
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
IRJET Journal
 
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based CrowdfundingInvest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
IRJET Journal
 
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
IRJET Journal
 
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUBSPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
IRJET Journal
 
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
AR Application: Homewise VisionMs. Vaishali Rane, Om Awadhoot, Bhargav Gajare...
IRJET Journal
 
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
Ad

Recently uploaded (20)

Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Development of MLR, ANN and ANFIS Models for Estimation of PCUs at Different ...
Journal of Soft Computing in Civil Engineering
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
theory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptxtheory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptx
sanchezvanessa7896
 
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
inmishra17121973
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Process Parameter Optimization for Minimizing Springback in Cold Drawing Proc...
Journal of Soft Computing in Civil Engineering
 
introduction to machine learining for beginers
introduction to machine learining for beginersintroduction to machine learining for beginers
introduction to machine learining for beginers
JoydebSheet
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)
rccbatchplant
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
some basics electrical and electronics knowledge
some basics electrical and electronics knowledgesome basics electrical and electronics knowledge
some basics electrical and electronics knowledge
nguyentrungdo88
 
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
IntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdfIntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdf
Luiz Carneiro
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)
samueljackson3773
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdfMAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
ssuser562df4
 
Compiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptxCompiler Design Unit1 PPT Phases of Compiler.pptx
Compiler Design Unit1 PPT Phases of Compiler.pptx
RushaliDeshmukh2
 
theory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptxtheory-slides-for react for beginners.pptx
theory-slides-for react for beginners.pptx
sanchezvanessa7896
 
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
211421893-M-Tech-CIVIL-Structural-Engineering-pdf.pdf
inmishra17121973
 
Smart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptxSmart_Storage_Systems_Production_Engineering.pptx
Smart_Storage_Systems_Production_Engineering.pptx
rushikeshnavghare94
 
Degree_of_Automation.pdf for Instrumentation and industrial specialist
Degree_of_Automation.pdf for  Instrumentation  and industrial specialistDegree_of_Automation.pdf for  Instrumentation  and industrial specialist
Degree_of_Automation.pdf for Instrumentation and industrial specialist
shreyabhosale19
 
introduction to machine learining for beginers
introduction to machine learining for beginersintroduction to machine learining for beginers
introduction to machine learining for beginers
JoydebSheet
 
AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)AI-assisted Software Testing (3-hours tutorial)
AI-assisted Software Testing (3-hours tutorial)
Vəhid Gəruslu
 
Oil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdfOil-gas_Unconventional oil and gass_reseviours.pdf
Oil-gas_Unconventional oil and gass_reseviours.pdf
M7md3li2
 
QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)QA/QC Manager (Quality management Expert)
QA/QC Manager (Quality management Expert)
rccbatchplant
 
15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...15th International Conference on Computer Science, Engineering and Applicatio...
15th International Conference on Computer Science, Engineering and Applicatio...
IJCSES Journal
 
some basics electrical and electronics knowledge
some basics electrical and electronics knowledgesome basics electrical and electronics knowledge
some basics electrical and electronics knowledge
nguyentrungdo88
 
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G..."Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
"Feed Water Heaters in Thermal Power Plants: Types, Working, and Efficiency G...
Infopitaara
 
Level 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical SafetyLevel 1-Safety.pptx Presentation of Electrical Safety
Level 1-Safety.pptx Presentation of Electrical Safety
JoseAlbertoCariasDel
 
IntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdfIntroSlides-April-BuildWithAI-VertexAI.pdf
IntroSlides-April-BuildWithAI-VertexAI.pdf
Luiz Carneiro
 
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptxLidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
Lidar for Autonomous Driving, LiDAR Mapping for Driverless Cars.pptx
RishavKumar530754
 
International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)International Journal of Distributed and Parallel systems (IJDPS)
International Journal of Distributed and Parallel systems (IJDPS)
samueljackson3773
 
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdfRICS Membership-(The Royal Institution of Chartered Surveyors).pdf
RICS Membership-(The Royal Institution of Chartered Surveyors).pdf
MohamedAbdelkader115
 
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdfMAQUINARIA MINAS CEMA 6th Edition (1).pdf
MAQUINARIA MINAS CEMA 6th Edition (1).pdf
ssuser562df4
 
Ad

BRAIN TUMOUR DETECTION AND CLASSIFICATION

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 11 Issue: 02 | Feb 2024 www.irjet.net p-ISSN: 2395-0072 © 2024, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 77 BRAIN TUMOUR DETECTION AND CLASSIFICATION Aryan Galande1, Suraj Mohite2, Pavan Thorat3, Prof. Rajani Jadhav4 1Aryan Galande: Student, Dept. of Computer Engineering, PICT Pune. 2Suraj Mohite: Student, Dept. of Computer Engineering, PICT Pune. 3Pavan Thorat: Student, Dept. of Computer Engineering, PICT Pune. 4Prof. Rajani Jadhav: Professor, Dept. of Computer Engineering, PICT Pune. ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - Cancer is one of the largest health problems the world faces today, and early detection is key to better patient outcomes. Traditional tumour detection methods sometimes involve intrusive procedures and have disadvantages. The integration of Artificial Intelligence (AI) and Machine Learning (ML) has led to breakthrough developments in the field of medical diagnostics in recent years, particularly in the identification of malignant tumours. This research provides a thorough analysis of the application of AI and ML techniques in the early diagnosis and detection of cancer. Keywords—Cancer Detection, Tumor Detection, Artificial Intelligence, Machine Learning, Medical Imaging, Radiology, Healthcare, Early Diagnosis. Key Words: Cancer Detection, Tumour Detection, Artificial Intelligence, Machine Learning, Medical Imaging , Radiology, Healthcare, Early Diagnosis . 1.INTRODUCTION A crucial area of medical research and clinical practice is the detection of cancer in the brain. This field focuses on the identification and diagnosis of tumours that originate inside the central nervous system, which includes the brain and spinal cord. Brain tumours, commonly referred to as brain cancer, can be malignant (cancerous) or benign (noncancerous). Early brain cancer detection is essential for successful treatment and better patient outcomes. The following are some important details about brain cancer detection: Different Brain Tumour Types: Brain tumours are categorized according to their origin, location, and level of malignancy. Whereas secondary brain tumours originate from cancer that has progressed to the brain from other parts of the body, primary brain tumours originate in the brain or spinal cord. Brain cancer symptoms can vary greatly and include weakness, eyesight issues, altered behaviour or cognitive function, chronic headaches, and seizures. Due to the mild and non- specific nature of these symptoms, early identification is frequently difficult. Diagnostic Tools: A mix of diagnostic tools and medical imaging techniques, such as magnetic resonance imaging (MRI), computed tomography (CT), and positron emission tomography (PET) scans, are commonly used to detect brain cancer. The presence, location, and size of brain tumours can be seen with the aid of these imaging investigations. Biopsy: To obtain a conclusive diagnosis, a biopsy often entails taking a tiny sample of the tumour tissue to be examined under a microscope. This aids in identifying the exact type of tumour and whether it is malignant. Blood Tests: New studies are investigating the possibilities of liquid biopsies, which entail testing blood samples for the presence of DNA mutations linked to brain cancer or tumor-specific markers. Developments in Imaging: The capacity to accurately map brain tumours and evaluate their effects on surrounding brain structures has been enhanced by developments in medical imaging technology, including diffusion tensor imaging and functional magnetic resonance imaging. Options for Treatment: Surgery, radiation therapy, chemotherapy, immunotherapy, targeted therapy, or a mix of these may be used to treat brain cancer. Options for less invasive treatment are frequently made possible by early detection. Research and Innovation: Developing novel treatments for brain tumours and enhancing the precision and noninvasiveness of diagnostic methods are the two main objectives of continuous efforts in the field of brain cancer detection. Early Diagnosis and Prognosis: Early detection of brain cancer is critical to improving patient quality of life and raising the chance of a successful treatment plan. Moreover, accurate prognosis is necessary to tailor treatment plans to individual patients. 1.1 Literature Survey In a 2021 study by Q.D. Buchlak et al., the applications of machine learning in neuroimaging for glioma detection and classification were explored. This research offers valuable insights into the use of AI specifically for glioma diagnosis, a common and aggressive type of brain tumor. Understanding the specific methods and algorithms employed for glioma diagnosis is essential for comprehending the broader landscape of brain tumor detection. M.K. Abd-Ellah et al.'s 2019 review provides a comprehensive overview of brain tumor diagnosis from MRI images, with a focus on the practical implications. This study offers a holistic perspective on the challenges and opportunities associated with using MRI for brain
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 11 Issue: 02 | Feb 2024 www.irjet.net p-ISSN: 2395-0072 © 2024, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 78 tumor diagnosis, shedding light on the real-world applications of this technology. The same work by M.K. Abd-Ellah et al. emphasizes lessons learned from the application of MRI in brain tumor diagnosis. The lessons derived from this research are crucial for understanding the evolving landscape of brain tumor diagnosis and serve as valuable guidance for future studies. V.P. Grover et al.'s 2015 publication on magnetic resonance imaging principles and techniques is instrumental in providing a fundamental understanding of MRI, which forms the basis for brain tumor imaging. Understanding the underlying principles of MRI is essential for interpreting the results of machine learning models applied to MRI data. In a 2000 study by H. Tang et al., MRI brain image segmentation using multi-resolution edge detection and region selection techniques was discussed. This study provides insights into the image processing approaches used in the context of brain tumor detection and their integration with machine learning for more accurate tumor delineation. In a 2010 study by K. Somasundaram et al., a fully automatic brain extraction algorithm for axial T2-weighted MRI images was presented. This addresses a crucial preprocessing step for brain tumor diagnosis. The automatic extraction of the brain region is an essential component of the pipeline, and this study contributes to the technical aspects of the process. 1.2 Methodology A. Detecting brain tumors using a Support Vector Machine (SVM) algorithm involves several steps, from data collection and preprocessing to model training and evaluation. Here's a step-by-step algorithm on how to detect brain tumor using SVM: 2. ALGORITHM 1. Start 2. Data Collection 3. Data Preprocessing: Process the MRI images to prepare them for training and testing. 4. Feature Extraction: Depending on your dataset and the nature of the images, you may want to extract relevant features from the images. Some common feature extraction methods include Histogram of Oriented Gradients (HOG) or Local Binary Patterns (LBP). 5. Feature Vector Generation: Convert the processed or extracted features into feature vectors that can be fed into the SVM. Each image should be represented as a set of numerical features. 6. Labeling: Assign labels to your feature vectors, such as 0 for non-tumor and 1 for tumor. Ensure that your labels match the images in the training set. 7. SVM Model Selection: Choose the appropriate type of SVM (linear, polynomial, radial basis function, etc.) based on your dataset and problem. You can experiment with different kernel functions to see which one works best for your problem. 8. Model Training: Train the SVM model on the labeled training data. The SVM algorithm will learn the decision boundary that best separates the tumor and non-tumor classes. You can use libraries like scikit-learn in Python for SVM implementation. 9. Model Evaluation: Assess the performance of your SVM model using appropriate evaluation metrics. Common evaluation metrics for binary classification tasks include accuracy, precision, recall, F1-score, and ROC curve analysis. 10. Hyperparameter Tuning: Fine-tune the hyperparameters of the SVM model, such as the regularization parameter (C) or the kernel parameters, to optimize the model's performance. You can use techniques like cross-validation for this. 11. Testing: Use the trained SVM model to predict tumor vs. non-tumor labels on your test dataset. 12. Post-processing: You can apply post-processing techniques to improve the model's output, such as thresholding to reduce false positives or false negatives. 13. Visualization: Visualize the SVM's decision boundary or important features, which can help understand the model's decision-making process. 14. Deployment 15. If the model performs well, we can deploy it for real world brain tumor detection, possibly in a medical setting. 16. End Using the above algorithm, we can detect samples containing brain tumour. 2. EXPERIMENTS AND RESULTS For this experiment, we utilized a diverse dataset comprising MRI images of the brain, including both cancerous and non-cancerous cases. The dataset was carefully curated to encompass a wide range of tumor types, sizes, and locations, ensuring the diversity necessary for training and evaluating the SVM model effectively. Fig. 2. Samples tested for no tumor.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 11 Issue: 02 | Feb 2024 www.irjet.net p-ISSN: 2395-0072 © 2024, IRJET | Impact Factor value: 8.226 | ISO 9001:2008 Certified Journal | Page 79 The chosen dataset includes two types of data:- 1)Training Data 2)Testing Data Each of these divisions of datasets includes MRI Scansof Human Brain having no tumor and MRI Scans of Human Brain having Pituitary Tumor. The SVM Model is trained on the training data of chosen dataset, Fig 2 shows results of testing of SVM model on the testing data of chosen dataset for no tumor. Fig. 3. Samples tested for pituitary tumor. Fig 3 shows results of testing of SVM model on the testingdata of chosen dataset for pituitary tumor. Fig. 4. Testing Results. After testing the model, we got the training score of 0.9887 andtesting score of 0.9592. 3. CONCLUSIONS In conclusion, a promising direction in the field of medical diagnostics is the application of Support Vector Machines (SVM) for brain tumour detection. SVMs are a useful tool for accurate classification, but there are issues that need to be resolved, including issues with generalization, data limitations, and ethics. Investigating deep learning methods, multimodal data fusion, and real-time detection systems, among other possibilities, can significantly improve the efficiency and [1] Q.D. Buchlak et al. Machine learning applications to neuroimaging for glioma detection and classification: an artificial intelligence augmented systematic review J. Clin. Neurosci. (2021) [2] M.K. Abd-Ellah et al. A review on brain tumor diagnosis from MRI images: practical implications, key achievements, and lessons learned Magn. Reson. Imag. (2019) [3] M.K. Abd-Ellah et al. A review on brain tumor diagnosis from MRI images: practical implications, key achievements, and lessons learned Magn. Reson. Imag. (2019) [4] V.P. Grover et al. Magnetic resonance imaging: principles and techniques: lessons for clinicians Journal of clinical and experimental hepatology (2015) [5]. H. Tang et al. MRI brain image segmentation by multiresolution edge detection and region selection Comput. Med. Imag. Graph. (2000) [6] K. Somasundaram et al. Fully automatic brain extraction algorithm for axial T2-weighted magnetic resonance images Comput. Biol. Med. (2010) accuracy of tumour detection. Moreover, collaboration between AI and medical experts is necessary for the successful integration of SVM-based tumour detection in clinical settings. These developments herald a bright future for improving brain tumour identification, which will eventually lead to better patient outcomes and care. REFERENCES