Restoring Tumorous MRI Brain Images

Size: px
Start display at page:

Download "Restoring Tumorous MRI Brain Images"

Transcription

1 Restoring Tumorous MRI Brain Images Yadavan Varatharajah Summer Ventures 2007 Appalachian State University

2 Abstract Brain tumors are caused by many environmental, lifestyle, and genetic factors. This project will cover what a brain tumor is, general information about brain tumors, the different tests to detect brain tumors, and how to improve the image, so that the tumor portion of the brain can be clearly visible. Another significant part of this project that will be covered is image restoration. We will be using multiple computer programs, such as MATLAB and ImageJ, to improve images and restore degraded images back to their original form. In order to show how image restoration works, we will corrupt images by using MATLAB and then multiply the image and use formulas to blur the image. Another way to corrupt an image is by using ImageJ, and using Gaussian Blur or another filter such as convolution and finding edges to help distort the image. In this report, the MRI images of the brain tumor will be labeled in most figures, so it can be clearly visible.

3 Introduction Brain tumors are intracranial tumors that are created by abnormal and uncontrolled cell division, normally either in the brain itself, cranial nerves, brain envelopes, skull, pituitary, and pineal gland. Though brain tumors can be identified in any area of the brain, most tumors are usually located in two different locations, depending on age. Brain tumors are usually identified in the posterior cranal fossa in children and in the anterior two-thirds of the cerebral hemispheres in adults [1]. Although brain tumors can occur at any age, studies have shown that they are most common in two age groups. The first age group is children three to twelve years old, and the other is adults from forty to seventy years old. Studies show that some types of brain tumors are more frequent among workers in certain industries, such as drug and rubber manufacturing, and oil refining. Also, other recent studies have shown that embalmers and chemists have a high incidence of brain tumors. [2] Each year more than sixteen thousand people find out that they have a brain tumor. Tumors are all either benign or malignant. Benign tumors do not contain cancer cells and can usually be removed, and are not likely to recur. Benign brain tumors have clear borders, and though they do not invade nearby tissues, they can press on sensitive areas of the brain and cause symptoms. Unlike benign tumors, malignant tumors contain cancer cells. They interfere with vital signs and are therefore life-threatening. However, malignant brain tumors rarely spread from a person s brain and are likely to grow rapidly and crowd or invade the tissue around them. [2] To come to a diagnosis, specialized tests are used such as CT, MRI, and PET scans. Computer Tomography (CT) scans use special X-ray equipment, which obtain

4 images from different angles, and a computer that assembles them to create a detailed cross-sectional picture of the body s tissues. These pictures are called slices, which provide more detailed information on brain tumors than conventional X-ray films. [3] But unlike conventional X-rays and CT scans, MRI does not use radiation. Instead, radio waves and a strong magnetic field are used to produce clear and detailed pictures of internal organs. The radio waves are directed at protons. In a setting of a strong magnetic field, the protons become excited and then relaxed, which emit radio signals, and then they are computer-processed to form an image. MRI images show differences in the water content in various body tissues due to protons being abundant in the hydrogen atoms of water. Different types of tissue within the same organ, such as the white and gray matter of the brain, can be distinguished. Small tumors, tumors next to the bone, brain stem tumors, and low grade tumors are often best imaged by MRI. [3] A PET scan provides a picture of brain activity, rather than structure, by measuring levels of injected glucose labeled with a radioactive tracer. After a low dose of radioactive glucose is injected, a scanner rotates around the patient s head and detects the amount of radioactivity in different parts of the brain. Different types of tissue and organ functions are displayed using the different degrees of brightness and color. A good example of this is cancerous tissue which consumes more glucose than healthy tissue, so it appears brighter when scanned. A PET scan is not regularly used for diagnosing tumors, but is used with other scans to determine the grade of the tumor and to distinguish between scar tissue and necrosis. [3] Image restoration is the ability to restore a corrupted or disturbed image back to its original form. The goal of image restoration is to take a corrupted image and to restore

5 the image back to better quality, or closer to the original. MATLAB and ImageJ are helpful tools for image restoration. Restoration can be helpful for all images, no matter how much it is corrupted and is used by medical imagers to better see anomalies in MRI or X-ray images. In ImageJ a few filters such as, Gaussian blur, convolution, and finding edge will be useful tools in corrupting the brain images. In order to better present image restoration all images will be manually corrupted, so that the picture will be restored to the closest clarity. Methods Images for the research were gathered from the internet. ImageJ and MATLAB, were the two programs used to alter and then restore the images. The first image represents a brain tumor on the right side of the brain: Figure 1- Uncorrupted image of brain tumor1 [4]

6 Figure 1 was blurred, and symmetry was used to fill in the border as well as being smoothed using the Gaussian Blur. The commands that were used in MATLAB are present in Figure 2. PSF=fspecial( gaussian,7,10; Blurred=imfilter(f,PSF, symmetric, conv ); figure;imshow(blurred);title( Blurred Image ); Figure 2 Figure 3- Blurred image of brain tumor1 [4] Figure 3 is a blurred image, but will be removed by using a blind filter. A blind filter is used when the exact Point Spread Function (PSF) is not known. When you use maximum likelihood estimation, you will find the PSF, and therefore this will estimate random corruption. Now we will remove the blur by using the commands seen in Figure 4.

7 INITPSF=ones(size(PSF)); [f P]=deconvblind(Blurred, INITPSF,30); figure;imshow(p,[], notruesize ); figure;imshow(f);title( Restored Image ); Figure 4 Figure 5- Restored image of brain tumor1 [4] Figure 5 is the new filtered image that was restored, after we sent the command seen in Figure4. The restored image came out as close as possible to the uncorrupted image, and there was a significant change from the corrupted image to the restored image, and we could easily distinguish the tumor. Now another image will be done similarly, but in color. This image is shown uncorrupted in Figure 6. The tumor is easily identified by the bright yellow circular portion, on the right side of the brain:

8 Figure 6- Uncorrupted image of brain tumor2 [5] As seen here in Figure 6 the image can easily be seen, and is colorful. The tumor portion is in the axial section of the human brain. As seen in the prior experiment, the procedure worked perfectly, and we restored the image effectively. The commands used in the grey0-scale image are also going to be the same ones used to corrupt and restore this color image. The commands that will be used to corrupt this image will be presented in figure 7. PSF=fspecial( gaussian,7,10); Blurred=imfilter(f,PSF, symmetric, conv ); figure;imshow(blurred);title( Blurred Image ); Figure 7

9 Figure 8- Blurred image of brain tumor2 [5] In Figure 8 the image is blurred, and is very bright, because it is in color. However, you can not see the minor details that were in the uncorrupted image. Just like the black and white image, we will be using the blind filter, to remove the blur. There might be some differences between grey-scale and color images, so that will be one of the most important aspects we will be looking at in this study. To restore the image, we will be using the same commands used in Figure 4. INITPSF=ones(size(PSF)); [f P]=deconvblind(Blurred, INITPSF,30); figure;imshow(p,[], notruesize ); figure;imshow(f);title( Restored Image ); Figure 9

10 Figure 10- Restored Image of brain tumor2 [5] Figure 10 is the new filtered image that was restored after we sent the command seen in Figure9. The restored image was just like the image in Figure6 which was uncorrupted. The blur is gone, so you can easily see the tumor again. You could identify the tumor even with the blur, because it was in color. Luckily, brain tumors are easy to distinguish in MRI images. Conclusions The results show that any corruption to the original image can be fully restored. This proves that image restoration can be a powerful tool used by law enforcement agencies worldwide as well as other fields, like medical technologies. Image restoration takes a long time to do, because it takes many trials to find the best PSF to restore the image to the fullest. In order to correctly restore an image it should go through many filters because the amount of corruption is unknown and the image is going through a blind filter.

11 References 1. Chamberlain MC, Kormanik PA. Practical guidelines for the treatment of malignant gliomas CA Cancer J Clin 2000; 1?cat=health 2. Medicine Net, Brain Tumors 16, April Gerson, Sam. The Diagnosis of Brain Tumors Brain Tumor Society Sgambati, Maria. The Road to Tenure: Measures of Progress. National Cancer Institute. July Burt M. Alvin. Brain. Brain Forum

MRI and CT of the CNS

MRI and CT of the CNS MRI and CT of the CNS Dr.Maha ELBeltagy Assistant Professor of Anatomy Faculty of Medicine The University of Jordan 2018 Computed Tomography CT is used for the detection of intracranial lesions. CT relies

More information

HSC Physics. Module 9.6. Medical Physics

HSC Physics. Module 9.6. Medical Physics HSC Physics Module 9.6 Medical Physics Contextual Outline 9.6 Medical Physics (28 indicative hours) The use of other advances in technology, developed from our understanding of the electromagnetic spectrum,

More information

Syllabus References. Resources. Video: MRI Introduction

Syllabus References. Resources. Video: MRI Introduction MRI Lesson Outline Syllabus References 9.6.4.2.5 Define precessing and relate the frequency of the precessing to the composition of the nuclei and the strength of the applied external magnetic field 9.6.4.2.6

More information

Brain Tumors. What is a brain tumor?

Brain Tumors. What is a brain tumor? Scan for mobile link. Brain Tumors A brain tumor is a collection of abnormal cells that grows in or around the brain. It poses a risk to the healthy brain by either invading or destroying normal brain

More information

Vaginal cancer: Know what to expect

Vaginal cancer: Know what to expect Vaginal cancer: Know what to expect For women with vaginal cancer What is the vagina? The vagina is a hollow canal that connects the cervix and the uterus to the outside. of the body. When a woman gives

More information

COMENIUS-Project: SM&CLIL Radiation & Medicine

COMENIUS-Project: SM&CLIL Radiation & Medicine Medical imaging refers to the techniques and processes used to create images of the human body (or parts thereof) for clinical purposes. Thanks to modern mathematics and computer technology, medical imaging

More information

Non-Invasive Techniques

Non-Invasive Techniques Non-Invasive Techniques Key: Does not hurt the organism Psychology 372 Physiological Psychology Steven E. Meier, Ph.D. Listen to the audio lecture while viewing these slides or view the video presentation

More information

Non-Invasive Techniques

Non-Invasive Techniques Many Procedures Non-Invasive Techniques Key: Does not hurt the organism Psychology 372 Physiological Psychology Steven E. Meier, Ph.D. Listen to the audio lecture while viewing these slides or view the

More information

Outline. Biological Psychology: Research Methods. Dr. Katherine Mickley Steinmetz

Outline. Biological Psychology: Research Methods. Dr. Katherine Mickley Steinmetz Biological Psychology: Research Methods Dr. Katherine Mickley Steinmetz Outline Neuroscience Methods Histology Electrophysiological Recordings Lesion Neuroimaging Neuroanatomy Histology: Brain structure

More information

Medical Use of Radioisotopes

Medical Use of Radioisotopes Medical Use of Radioisotopes Therapy Radioisotopes prove to be useful in the application of brachytherapy, the procedure for using temporary irradiation close to the area of disease (i.e. cancer) 10% Medical

More information

III. Studying The Brain and Other Structures

III. Studying The Brain and Other Structures III. Studying The Brain and Other Structures 1. Accidents (case study) In 1848, a railroad worker named Phineas Gage was involved in an accident that damaged the front part of his brain. Gage s doctor

More information

AUTOMATIC BRAIN TUMOR DETECTION AND CLASSIFICATION USING SVM CLASSIFIER

AUTOMATIC BRAIN TUMOR DETECTION AND CLASSIFICATION USING SVM CLASSIFIER AUTOMATIC BRAIN TUMOR DETECTION AND CLASSIFICATION USING SVM CLASSIFIER 1 SONU SUHAG, 2 LALIT MOHAN SAINI 1,2 School of Biomedical Engineering, National Institute of Technology, Kurukshetra, Haryana -

More information

Esophageal cancer. What is esophageal cancer? Esophageal cancer is a disease in which malignant (cancer) cells form in the tissues of the esophagus.

Esophageal cancer. What is esophageal cancer? Esophageal cancer is a disease in which malignant (cancer) cells form in the tissues of the esophagus. Esophageal Cancer Esophageal cancer What is esophageal cancer? What are risk factors? Signs and symptoms Tests for esophageal cancer Stages of esophageal cancer Treatment options What is esophageal cancer?

More information

Magnetic Resonance Imaging on Soft Tissue. Jiten K. Mistry Calvin Gan

Magnetic Resonance Imaging on Soft Tissue. Jiten K. Mistry Calvin Gan Magnetic Resonance Imaging on Soft Tissue 1 Jiten K. Mistry Calvin Gan Outline Background of Medical Imaging Introduction to MRI How MRI works MRI of Soft Tissue Benefits & Risks Recent Advances 2 The

More information

Scans in Neurofibromatosis

Scans in Neurofibromatosis Scans in Neurofibromatosis A scan creates an image or picture of internal organs of the body such as bone or soft tissue. Scans are used by doctors to help to identify the cause of your symptoms. Your

More information

What is cancer? l Cancer is a group of several diseases caused by the abnormal growth of cells.

What is cancer? l Cancer is a group of several diseases caused by the abnormal growth of cells. Cancer Biology What is cancer? l Cancer is a group of several diseases caused by the abnormal growth of cells. What is cancer? l Cancer is a group of several diseases caused by the abnormal growth of cells.

More information

Vulvar cancer: Know what to expect

Vulvar cancer: Know what to expect Vulvar cancer: Know what to expect For women with vulvar cancer What is the vulva? The vulva is the external (outside) part of the female genitals. The vulva includes the outer and inner lip, the clitoris,

More information

The Brain Studying & Structures. Unit 3

The Brain Studying & Structures. Unit 3 The Brain Studying & Structures Unit 3 Modified PowerPoint from: Aneeq Ahmad -- Henderson State University. Worth Publishers 2007 Learning Objectives Describe the nervous system and its subdivisions and

More information

Childhood Craniopharyngioma Treatment (PDQ )

Childhood Craniopharyngioma Treatment (PDQ ) 1 di 12 27/06/2016 09.45 NCBI Bookshelf. A service of the National Library of Medicine, National Institutes of Health. PDQ Cancer Information Summaries [Internet]. Bethesda (MD): National Cancer Institute

More information

Stroke Imaging Basics. Jeremy Hopkin M.D.

Stroke Imaging Basics. Jeremy Hopkin M.D. Stroke Imaging Basics Jeremy Hopkin M.D. Goals Introduce the basic physical properties of imaging used in stroke. Understand why each modality is used in the setting of stroke. Understand some strengths

More information

BHARAT SEVAK SAMAJ NATIONAL DEVELOPMENT AGENCY, PROMOTED BY GOVERNMENT OF INDIA BSS DIPLOMA IN MRI SCAN

BHARAT SEVAK SAMAJ NATIONAL DEVELOPMENT AGENCY, PROMOTED BY GOVERNMENT OF INDIA BSS DIPLOMA IN MRI SCAN BHARAT SEVAK SAMAJ NATIONAL DEVELOPMENT AGENCY, PROMOTED BY GOVERNMENT OF INDIA CENTRAL BOARD OF EXAMINATIONS BSS NATION TIONAL VOCA OCATION TIONAL EDUCATION MISSION BSS DIPLOMA IN MRI SCAN TWO YEAR COURSE

More information

Brain Tumor Detection using Watershed Algorithm

Brain Tumor Detection using Watershed Algorithm Brain Tumor Detection using Watershed Algorithm Dawood Dilber 1, Jasleen 2 P.G. Student, Department of Electronics and Communication Engineering, Amity University, Noida, U.P, India 1 P.G. Student, Department

More information

Gross Organization I The Brain. Reading: BCP Chapter 7

Gross Organization I The Brain. Reading: BCP Chapter 7 Gross Organization I The Brain Reading: BCP Chapter 7 Layout of the Nervous System Central Nervous System (CNS) Located inside of bone Includes the brain (in the skull) and the spinal cord (in the backbone)

More information

Cancer , The Patient Education Institute, Inc. ocf80101 Last reviewed: 06/08/2016 1

Cancer , The Patient Education Institute, Inc.   ocf80101 Last reviewed: 06/08/2016 1 Cancer Introduction Cancer begins in your cells, which are the building blocks of your body. Extra cells can form a mass called a tumor. Some tumors aren t cancerous, while other ones are. Cells from cancerous

More information

NON- HODGKIN LYMPHOMA

NON- HODGKIN LYMPHOMA NON- HODGKIN LYMPHOMA non - Hodgkin lymphoma This medical guide is designed for educational purposes to help patients understand. Please consult your doctor on specific questions and details about your

More information

The Biological Level of Analysis: Studying the Brain

The Biological Level of Analysis: Studying the Brain The Biological Level of Analysis: Studying the Brain In the past the study of the brain was limited to people suffering from head injuries and the effects of accidental damage. It was only possible to

More information

2D-Sigmoid Enhancement Prior to Segment MRI Glioma Tumour

2D-Sigmoid Enhancement Prior to Segment MRI Glioma Tumour 2D-Sigmoid Enhancement Prior to Segment MRI Glioma Tumour Pre Image-Processing Setyawan Widyarto, Siti Rafidah Binti Kassim 2,2 Department of Computing, Faculty of Communication, Visual Art and Computing,

More information

Comparison of Various Image Edge Detection Techniques for Brain Tumor Detection

Comparison of Various Image Edge Detection Techniques for Brain Tumor Detection International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2017 IJSRCSEIT Volume 2 Issue 1 ISSN : 2456-3307 Comparison of Various Image Edge Detection Techniques

More information

Biological Research Strategies and Hormones

Biological Research Strategies and Hormones Biological Research Strategies and Hormones WHS AP Psychology Unit 3: Biological Psychology Essential Task 3-6: Detail historic and contemporary research strategies and technologies that support research

More information

BRAIN TUMOR DETECTION AND SEGMENTATION USING WATERSHED SEGMENTATION AND MORPHOLOGICAL OPERATION

BRAIN TUMOR DETECTION AND SEGMENTATION USING WATERSHED SEGMENTATION AND MORPHOLOGICAL OPERATION BRAIN TUMOR DETECTION AND SEGMENTATION USING WATERSHED SEGMENTATION AND MORPHOLOGICAL OPERATION Swe Zin Oo 1, Aung Soe Khaing 2 1 Demonstrator, Department of Electronic Engineering, Mandalay Technological

More information

fmri (functional MRI)

fmri (functional MRI) Lesion fmri (functional MRI) Electroencephalogram (EEG) Brainstem CT (computed tomography) Scan Medulla PET (positron emission tomography) Scan Reticular Formation MRI (magnetic resonance imaging) Thalamus

More information

Brain Tumor Detection Using Image Processing.

Brain Tumor Detection Using Image Processing. 47 Brain Tumor Detection Using Image Processing. Prof. Mrs. Priya Charles, Mr. Shubham Tripathi, Mr.Abhishek Kumar Professor, Department Of E&TC,DYPIEMR,Akurdi,Pune, Student of BE(E&TC),DYPIEMR,Akurdi,Pune,

More information

Cervical cancer is a disease in which malignant (cancer) cells form in the tissues of the cervix.

Cervical cancer is a disease in which malignant (cancer) cells form in the tissues of the cervix. Cervical Cancer Cervical cancer is a disease in which malignant (cancer) cells form in the tissues of the cervix. The cervix is the lower, narrow end of the uterus (the hollow, pear-shaped organ where

More information

Coding Companion for Podiatry. A comprehensive illustrated guide to coding and reimbursement

Coding Companion for Podiatry. A comprehensive illustrated guide to coding and reimbursement Coding Companion for Podiatry comprehensive illustrated guide to coding and reimbursement 2016 Contents Contents Foot and Toes 28043-28045 [28039, 28041] 28043 28039 28045 28041 Excision, tumor, soft tissue

More information

Adult Central Nervous System Tumors Treatment (PDQ )

Adult Central Nervous System Tumors Treatment (PDQ ) 1 di 20 28/06/2016 11.18 NCBI Bookshelf. A service of the National Library of Medicine, National Institutes of Health. PDQ Cancer Information Summaries [Internet]. Bethesda (MD): National Cancer Institute

More information

COMPUTED TOMOGRAPHY AND MAGNETIC RESONANCE OF THE THORAX

COMPUTED TOMOGRAPHY AND MAGNETIC RESONANCE OF THE THORAX page 1 / 5 page 2 / 5 computed tomography and magnetic pdf A CT scan, also known as computed tomography scan, and formerly known as a computerized axial tomography scan or CAT scan, makes use of computer-processed

More information

Ovarian Cancer Includes Epithelial, Fallopian Tube, Primary Peritoneal Cancer, and Ovarian Germ Cell Tumors

Ovarian Cancer Includes Epithelial, Fallopian Tube, Primary Peritoneal Cancer, and Ovarian Germ Cell Tumors Ovarian Cancer Includes Epithelial, Fallopian Tube, Primary Peritoneal Cancer, and Ovarian Germ Cell Tumors Overview Ovarian epithelial cancer, fallopian tube cancer, and primary peritoneal cancer are

More information

Adult Brain and Spinal Cord Tumors

Adult Brain and Spinal Cord Tumors Adult Brain and Spinal Cord Tumors An adult central nervous system (CNS) tumor is a disease in which abnormal cells form in the tissues of the brain and or the spinal cord. Major Parts of the Brain Anatomy

More information

Brain Tumor Treatment

Brain Tumor Treatment Scan for mobile link. Brain Tumor Treatment Brain Tumors Overview A brain tumor is a group of abnormal cells that grows in or around the brain. Tumors can directly destroy healthy brain cells. They can

More information

Lung Cancer: Diagnosis, Staging and Treatment

Lung Cancer: Diagnosis, Staging and Treatment PATIENT EDUCATION patienteducation.osumc.edu Lung Cancer: Diagnosis, Staging and Treatment Cancer starts in your cells. Cells are the building blocks of your tissues. Tissues make up the organs of your

More information

Radiologic Imaging Magnetic Resonance Imaging (MRI)

Radiologic Imaging Magnetic Resonance Imaging (MRI) Radiologic Imaging X-ray has always been the golden rule in diagnosing and treating podiatric patients. Unfortunately, for some patients the diagnosis is not as evident. That is when we need to utilize

More information

Molecular Imaging and Breast Cancer

Molecular Imaging and Breast Cancer Molecular Imaging and Breast Cancer Breast cancer forms in tissues of the breast usually in the ducts, tubes that carry milk to the nipple, and lobules, the glands that make milk. It occurs in both men

More information

[A RESEARCH COORDINATOR S GUIDE]

[A RESEARCH COORDINATOR S GUIDE] 2013 COLORECTAL SURGERY GROUP Dr. Carl J. Brown Dr. Ahmer A. Karimuddin Dr. P. Terry Phang Dr. Manoj J. Raval Authored by Jennifer Lee A cartoon about colonoscopies. 1 [A RESEARCH COORDINATOR S GUIDE]

More information

Hodgkin's Lymphoma. Symptoms. Types

Hodgkin's Lymphoma. Symptoms. Types Hodgkin's lymphoma (Hodgkin's disease) usually develops in the lymphatic system, a part of the body's immune system. This system carries disease-fighting white blood cells throughout the body. Lymph tissue

More information

Introduction to the Course and the Techniques. Jeffry R. Alger, PhD Ahmanson-Lovelace Brain Mapping Center Department of Neurology

Introduction to the Course and the Techniques. Jeffry R. Alger, PhD Ahmanson-Lovelace Brain Mapping Center Department of Neurology Introduction to the Course and the Techniques Jeffry R. Alger, PhD Ahmanson-Lovelace Brain Mapping Center Department of Neurology (jralger@ucla.edu) CTSI Neuroimaging April 2014 Rationale for the Course

More information

Cervical Cancer. Introduction Cervical cancer is a very common cancer. Nearly one half million cases are diagnosed worldwide each year.

Cervical Cancer. Introduction Cervical cancer is a very common cancer. Nearly one half million cases are diagnosed worldwide each year. Cervical Cancer Introduction Cervical cancer is a very common cancer. Nearly one half million cases are diagnosed worldwide each year. Most cases of cervical cancer can be prevented by getting regular

More information

Option D: Medicinal Chemistry

Option D: Medicinal Chemistry Option D: Medicinal Chemistry Basics - unstable radioactive nuclei emit radiation in the form of smaller particles alpha, beta, positron, proton, neutron, & gamma are all used in nuclear medicine unstable

More information

General Information Key Points

General Information Key Points The content of this booklet was adapted from content originally published by the National Cancer Institute. Male Breast Cancer Treatment (PDQ ) Patient Version. Updated September 29,2017. https://www.cancer.gov/types/breast/patient/male-breast-treatment-pdq

More information

A Review on Brain Tumor Detection in Computer Visions

A Review on Brain Tumor Detection in Computer Visions International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 14 (2014), pp. 1459-1466 International Research Publications House http://www. irphouse.com A Review on Brain

More information

X-Plain Brain Cancer Reference Summary

X-Plain Brain Cancer Reference Summary X-Plain Brain Cancer Reference Summary Introduction Brain tumors are not rare. About 20,000 Americans are diagnosed with brain cancer or related cancer of the nervous system. This reference summary will

More information

General information about skin cancer

General information about skin cancer Skin Cancer General information about skin cancer Key points Skin cancer is a disease in which malignant (cancer) cells form in the tissues of the skin. There are different types of cancer that start in

More information

EARLY STAGE DIAGNOSIS OF LUNG CANCER USING CT-SCAN IMAGES BASED ON CELLULAR LEARNING AUTOMATE

EARLY STAGE DIAGNOSIS OF LUNG CANCER USING CT-SCAN IMAGES BASED ON CELLULAR LEARNING AUTOMATE EARLY STAGE DIAGNOSIS OF LUNG CANCER USING CT-SCAN IMAGES BASED ON CELLULAR LEARNING AUTOMATE SAKTHI NEELA.P.K Department of M.E (Medical electronics) Sengunthar College of engineering Namakkal, Tamilnadu,

More information

ANALYSIS AND DETECTION OF BRAIN TUMOUR USING IMAGE PROCESSING TECHNIQUES

ANALYSIS AND DETECTION OF BRAIN TUMOUR USING IMAGE PROCESSING TECHNIQUES ANALYSIS AND DETECTION OF BRAIN TUMOUR USING IMAGE PROCESSING TECHNIQUES P.V.Rohini 1, Dr.M.Pushparani 2 1 M.Phil Scholar, Department of Computer Science, Mother Teresa women s university, (India) 2 Professor

More information

Improving Methods for Breast Cancer Detection and Diagnosis. The National Cancer Institute (NCI) is funding numerous research projects to improve

Improving Methods for Breast Cancer Detection and Diagnosis. The National Cancer Institute (NCI) is funding numerous research projects to improve CANCER FACTS N a t i o n a l C a n c e r I n s t i t u t e N a t i o n a l I n s t i t u t e s o f H e a l t h D e p a r t m e n t o f H e a l t h a n d H u m a n S e r v i c e s Improving Methods for

More information

Ultrasound imaging is a noninvasive medical test that helps physicians diagnose and treat medical conditions.

Ultrasound imaging is a noninvasive medical test that helps physicians diagnose and treat medical conditions. CAROTID ULTRASOUND What is Carotid Ultrasound Imaging? Ultrasound imaging, also called ultrasound scanning or sonography, involves exposing part of the body to highfrequency sound waves to produce pictures

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 2, Issue 8, August 2012 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Novel Approach

More information

General information about prostate cancer

General information about prostate cancer Prostate Cancer General information about prostate cancer Key points Prostate cancer is a disease in which malignant (cancer) cells form in the tissues of the prostate. Signs of prostate cancer include

More information

TIME: 3 Hours Marks: 100. I. FILL IN THE BLANKS - ANSWER FOR ANY 10 QUESTIONS 1 x 10 = 10

TIME: 3 Hours Marks: 100. I. FILL IN THE BLANKS - ANSWER FOR ANY 10 QUESTIONS 1 x 10 = 10 1 BHARAT SEVAK SAMAJ NATIONAL DEVELOPMENT AGENCY, PROMOTED BY GOVERNMENT OF INDIA CENTRAL BOARD OF EXAMINATIONS BSS NATIONAL VOCATIONAL EDUCATION MISSION AHE009-CT SCAN TECHNICIAN ONE YEAR EXAMINATION

More information

COGNITIVE SCIENCE 17. Peeking Inside The Head. Part 1. Jaime A. Pineda, Ph.D.

COGNITIVE SCIENCE 17. Peeking Inside The Head. Part 1. Jaime A. Pineda, Ph.D. COGNITIVE SCIENCE 17 Peeking Inside The Head Part 1 Jaime A. Pineda, Ph.D. Imaging The Living Brain! Computed Tomography (CT)! Magnetic Resonance Imaging (MRI)! Positron Emission Tomography (PET)! Functional

More information

Childhood Central Nervous System Atypical Teratoid/Rhabdoid Tumor Treatment (PDQ )

Childhood Central Nervous System Atypical Teratoid/Rhabdoid Tumor Treatment (PDQ ) 1 di 10 27/06/2016 08.16 NCBI Bookshelf. A service of the National Library of Medicine, National Institutes of Health. PDQ Cancer Information Summaries [Internet]. Bethesda (MD): National Cancer Institute

More information

What is Brain Cancer? What is the brain?

What is Brain Cancer? What is the brain? What is Brain Cancer? The brain and spinal column make up the central nervous system (CNS), where all vital functions of the body are controlled. When tumors arise in the central nervous system, they are

More information

Gastric (Stomach) Cancer

Gastric (Stomach) Cancer Gastric (Stomach) Cancer Gastric cancer is a disease in which malignant (cancer) cells form in the lining of the stomach. The stomach is a J-shaped organ in the upper abdomen. It is part of the digestive

More information

Vision Health: Conditions, Disorders & Treatments EYELID DISORDERS

Vision Health: Conditions, Disorders & Treatments EYELID DISORDERS Vision Health: Conditions, Disorders & Treatments EYELID DISORDERS There are a number of disorders that can affect the eyelid. Entropion Entropion is an inward turning of the eyelid and lashes toward the

More information

Philippine Cancer Society Forum: Cancer can be cured!

Philippine Cancer Society Forum: Cancer can be cured! Philippine Cancer Society Forum: Cancer can be cured! Throughout history, doctors and scientists have extensively studied Their researchers have not only yielded a wealth of information on the disease,

More information

LYMPHATIC DRAINAGE IN THE HEAD & NECK

LYMPHATIC DRAINAGE IN THE HEAD & NECK LYMPHATIC DRAINAGE IN THE HEAD & NECK Like other parts of the body, the head and neck contains lymph nodes (commonly called glands). Which form part of the overall Lymphatic Drainage system of the body.

More information

Myers Psychology for AP*

Myers Psychology for AP* Myers Psychology for AP* David G. Myers PowerPoint Presentation Slides by Kent Korek Germantown High School Worth Publishers, 2010 *AP is a trademark registered and/or owned by the College Board, which

More information

LESSON 1.3 WORKBOOK. How can we study the behaving brain?

LESSON 1.3 WORKBOOK. How can we study the behaving brain? LESSON 1.3 WORKBOOK How can we study the behaving brain? We are in the middle of a technological revolution when it comes to how closely we can look at the behaving brain. Scientists and doctors now have

More information

Introduction to Chest Radiography

Introduction to Chest Radiography Introduction to Chest Radiography RSTH 366: DIAGNOSTIC TECHNIQUES Alan Alipoon BS, RCP, RRT Instructor Department of Cardiopulmonary Sciences 1 Introduction Discovered in 1895 by Wilhelm Roentgen Terminology

More information

MODAL QUESTION PAPER X-RAYTECHNIC1AN X-RAY EQUIPMENT & RADIATION PHYSIC S 1 ST YEAR PAPER I Time: 3 Hours Max. Marks: 50.

MODAL QUESTION PAPER X-RAYTECHNIC1AN X-RAY EQUIPMENT & RADIATION PHYSIC S 1 ST YEAR PAPER I Time: 3 Hours Max. Marks: 50. X-RAY EQUIPMENT & RADIATION PHYSIC S 1 ST YEAR PAPER I 1. Define Electric Current and give its Sl Units? 2. Define the Unit ROENTGEN? 3. Mention the advantage of Grid s? 4. Name the various types of Transformers?

More information

Neuroimaging and Assessment Methods

Neuroimaging and Assessment Methods Psych 2200, Lecture 5 Experimental Design and Brain Imaging Methods Tues Sept 15, 2015 Revised TA office hours (Sam), today 4-5p, and wed 11:30-1:30. I will not have office hours this thurs but you should

More information

CHRONIC LYMPHOCYTIC LEUKEMIA

CHRONIC LYMPHOCYTIC LEUKEMIA CHRONIC LYMPHOCYTIC LEUKEMIA This medical guide is designed for educational purposes to help patients understand. Please consult your doctor on specific questions and details about your symptoms. 02 03

More information

Research Article Volume 6 Issue No. 3

Research Article Volume 6 Issue No. 3 DOI 10.4010/2016.601 ISSN 2321 3361 2016 IJESC Research Article Volume 6 Issue No. 3 Multifractal Texture Estimation for Detection and Segmentation of Brain Tumors with the Source and Age of the Tumor

More information

X-rays How safe are they?

X-rays How safe are they? X-rays How safe are they? Patient information Thirty years ago, X-rays were the only way to see what was going on inside your body. Now other methods of medical imaging are available, some using different

More information

Announcements. Exam 1. VII. Imaging techniques of the brain. Anatomical/Structural Scans. Structural Scans: CT. Structural Scans: CT 2/17/2014

Announcements. Exam 1. VII. Imaging techniques of the brain. Anatomical/Structural Scans. Structural Scans: CT. Structural Scans: CT 2/17/2014 Exam 1 None at the moment! Announcements Mean 78.0% Median 80% Mode 86% Min 26% Max 98% Std Dev 12.6% VII. Imaging techniques of the brain A. CT: anatomical B. MRI: anatomical C. fmri: functional D. SPECT

More information

Exam 1. Mean 78.0% Median 80% Mode 86% Min 26% Max 98% Std Dev 12.6%

Exam 1. Mean 78.0% Median 80% Mode 86% Min 26% Max 98% Std Dev 12.6% Exam 1 Mean 78.0% Median 80% Mode 86% Min 26% Max 98% Std Dev 12.6% None at the moment! Announcements VII. Imaging techniques of the brain A. CT: anatomical B. MRI: anatomical C. fmri: functional D. SPECT

More information

Psychologists who map the brain s fissures (grooves on the brain which appear as a deep fold) and inner recesses

Psychologists who map the brain s fissures (grooves on the brain which appear as a deep fold) and inner recesses Also called psychobiologists Psychologists who map the brain s fissures (grooves on the brain which appear as a deep fold) and inner recesses Methods include: 1) Recording 2) Stimulating 3) Lesioning 4)

More information

Molecular Imaging and the Brain

Molecular Imaging and the Brain Molecular imaging technologies are playing an important role in neuroimaging, a branch of medical imaging, by providing a window into the living brain. Where CT and conventional MR imaging provide important

More information

Magnetic Resonance Imaging (MRI)

Magnetic Resonance Imaging (MRI) (MRI) Disclaimer This film is an educational resource only and should not be used to make a decision on MRI. All such decisions must be made in consultation with a physician or licensed healthcare provider.

More information

Nuclear Medicine and PET. D. J. McMahon rev cewood

Nuclear Medicine and PET. D. J. McMahon rev cewood Nuclear Medicine and PET D. J. McMahon 150504 rev cewood 2018-02-15 Key Points Nuclear Medicine and PET: Imaging: Understand how Nuc Med & PET differ from Radiography & CT by the source of radiation. Be

More information

RADIOLOGY TEACHING CONFERENCE

RADIOLOGY TEACHING CONFERENCE RADIOLOGY TEACHING CONFERENCE John Athas, MD Monica Tadros, MD Columbia University, College of Physicians & Surgeons Department of Otolaryngology- Head & Neck Surgery September 27, 2007 CT SCAN IMAGING

More information

Investigations to diagnose asbestos related conditions. Helpline

Investigations to diagnose asbestos related conditions. Helpline Investigations to diagnose asbestos related conditions Helpline 0800 089 1717 www.clydesideactiononasbestos.org.uk Common investigations used to diagnose your condition Contents Introduction...3 Blood

More information

Vaginal Cancer Early Detection, Diagnosis, and Staging

Vaginal Cancer Early Detection, Diagnosis, and Staging Vaginal Cancer Early Detection, Diagnosis, and Staging Detection and Diagnosis Catching cancer early often allows for more treatment options. Some early cancers may have signs and symptoms that can be

More information

LEA Color Vision Testing

LEA Color Vision Testing To The Tester Quantitative measurement of color vision is an important diagnostic test used to define the degree of hereditary color vision defects found in screening with pseudoisochromatic tests and

More information

Automatic Detection of Brain Tumor Using K- Means Clustering

Automatic Detection of Brain Tumor Using K- Means Clustering Automatic Detection of Brain Tumor Using K- Means Clustering Nitesh Kumar Singh 1, Geeta Singh 2 1, 2 Department of Biomedical Engineering, DCRUST, Murthal, Haryana Abstract: Brain tumor is an uncommon

More information

Molecular Imaging and Cancer

Molecular Imaging and Cancer Molecular Imaging and Cancer Cancer causes one in every four deaths in the United States, second only to heart disease. According to the U.S. Department of Health and Human Services, more than 512,000

More information

Intravenous Pyelogram (IVP)

Intravenous Pyelogram (IVP) Scan for mobile link. Intravenous Pyelogram (IVP) Intravenous pyelogram (IVP) is an x-ray exam that uses an injection of contrast material to evaluate your kidneys, ureters and bladder and help diagnose

More information

A New Approach For an Improved Multiple Brain Lesion Segmentation

A New Approach For an Improved Multiple Brain Lesion Segmentation A New Approach For an Improved Multiple Brain Lesion Segmentation Prof. Shanthi Mahesh 1, Karthik Bharadwaj N 2, Suhas A Bhyratae 3, Karthik Raju V 4, Karthik M N 5 Department of ISE, Atria Institute of

More information

Lung cancer is a disease in which malignant (cancer) cells form in the tissues of the lung.

Lung cancer is a disease in which malignant (cancer) cells form in the tissues of the lung. Lung Cancer Lung cancer is a disease in which malignant (cancer) cells form in the tissues of the lung. The lungs are a pair of cone-shaped breathing organs in the chest. The lungs bring oxygen into the

More information

Liver Cancer And Tumours

Liver Cancer And Tumours Liver Cancer And Tumours What causes liver cancer? Many factors may play a role in the development of cancer. Because the liver filters blood from all parts of the body, cancer cells from elsewhere can

More information

LUNG NODULE SEGMENTATION IN COMPUTED TOMOGRAPHY IMAGE. Hemahashiny, Ketheesan Department of Physical Science, Vavuniya Campus

LUNG NODULE SEGMENTATION IN COMPUTED TOMOGRAPHY IMAGE. Hemahashiny, Ketheesan Department of Physical Science, Vavuniya Campus LUNG NODULE SEGMENTATION IN COMPUTED TOMOGRAPHY IMAGE Hemahashiny, Ketheesan Department of Physical Science, Vavuniya Campus tketheesan@vau.jfn.ac.lk ABSTRACT: The key process to detect the Lung cancer

More information

Breast and Ovarian Cancer

Breast and Ovarian Cancer Patient Education Breast and Ovarian Cancer Screening and detection The goal of screening for cancer is to find it as early as possible, when it is easiest to cure. This handout describes the symptoms

More information

Ways to Study Brain Structures and Functioning. Can physically trace connections. Ablation. Is the most primitive Can be done with any structures

Ways to Study Brain Structures and Functioning. Can physically trace connections. Ablation. Is the most primitive Can be done with any structures Ways to Study Brain Structures and Functioning Can physically trace connections Is the most primitive Can be done with any structures Ablation Can remove a piece of the brain and see what happens If the

More information

Brain Tumor Detection and Segmentation In MRI Images

Brain Tumor Detection and Segmentation In MRI Images Brain Tumor Detection and Segmentation In MRI Images AbhijithSivarajan S 1, Kamalakar V. Thakare 2, Shailesh Kathole 3, Pramod B. Khamkar 4, Danny J. Pereira 5 Department of Computer Engineering, Govt.

More information

MRI Based treatment planning for with focus on prostate cancer. Xinglei Shen, MD Department of Radiation Oncology KUMC

MRI Based treatment planning for with focus on prostate cancer. Xinglei Shen, MD Department of Radiation Oncology KUMC MRI Based treatment planning for with focus on prostate cancer Xinglei Shen, MD Department of Radiation Oncology KUMC Overview How magnetic resonance imaging works (very simple version) Indications for

More information

Segmentation of 3D Brain Structures in MRI Images

Segmentation of 3D Brain Structures in MRI Images Asian Journal of Computer Science and Technology ISSN: 2249-0701 Vol.8 No.2, 2019, pp. 13-18 The Research Publication, www.trp.org.in Segmentation of 3D Brain Structures in MRI Images P. Narendran 1 and

More information

An efficient method for Segmentation and Detection of Brain Tumor in MRI images

An efficient method for Segmentation and Detection of Brain Tumor in MRI images An efficient method for Segmentation and Detection of Brain Tumor in MRI images Shubhangi S. Veer (Handore) 1, Dr. P.M. Patil 2 1 Research Scholar, Ph.D student, JJTU, Rajasthan,India 2 Jt. Director, Trinity

More information

RADIOLOGY (MEDICAL IMAGING)

RADIOLOGY (MEDICAL IMAGING) RADIOLOGY (MEDICAL IMAGING) Radiology is the study of the diagnosis of disease by the use of radiant energy (radiation). In the past this meant the use of X-rays to make an image. Today many other forms

More information

ANNOUNCING THE NEW STONY BROOK UNIVERSITY OUTPATIENT IMAGING CENTER

ANNOUNCING THE NEW STONY BROOK UNIVERSITY OUTPATIENT IMAGING CENTER ANNOUNCING THE NEW STONY BROOK UNIVERSITY OUTPATIENT IMAGING CENTER PROVIDING THE MOST ADVANCED DIAGNOSTICS FOR THE HIGHEST QUALITY OF CARE Call Our Dedicated Line: (631) 638-2121 When you need the benefit

More information

Life saver 9. Life saver 9. Life saver 9. Life saver 8. Mobility of device 3. Mobility of device 1. PET scan. Ultra Violet Lamp. MRI scanner.

Life saver 9. Life saver 9. Life saver 9. Life saver 8. Mobility of device 3. Mobility of device 1. PET scan. Ultra Violet Lamp. MRI scanner. Ultra Violet Lamp MRI scanner Used to stop jaundice in babies helping the tiny liver clean the blood. Also used to treat people with TB, Lupus or even treat acne. Mobility of device 3 Uses magnets to change

More information

Breast Cancer. What is breast cancer?

Breast Cancer. What is breast cancer? Scan for mobile link. Breast Cancer Breast cancer is a malignant tumor in or around breast tissue. It usually begins as a lump or calcium deposit that develops from abnormal cell growth. Most breast lumps

More information