Digital Subtraction Angiography (DSA) Scan | Gleneagles Hospital (2024)

Overview What to Expect FAQ

What is digital subtraction angiography (DSA)?

Digital subtraction angiography (DSA) is a diagnostic procedure to view the inner surface of blood vessels (also known as lumen). It can be used to view arteries, veins and heart chambers.

DSA is a fluoroscopic technique (a technique that captures continuous images) that uses complex, computerised X-ray machines. A special contrast medium or 'dye' is injected into your blood to make the blood vessels easier to see.

Images are taken before and after the contrast dye is injected. To highlight the blood vessels, software is used to digitally 'subtract' the first image from the second.

Why do you need digital subtraction angiography (DSA)?

DSA is used to diagnose:

  • Abnormal connections between arteries and veins
  • Blood vessel diseases, including obstructive vascular diseases that are caused by blocks or narrowing in the lumen (inside) of arteries and veins
  • Brain aneurysms (especially intracranial aneurysms)
  • Bleeding vessels

It may also be used to:

  • Assess the blood vessel systems of cancerous tumours.
  • Provide a visual guide for interventional procedures such as angioplasty (ballooning) and vessel stenting.

Who should not undergo digital subtraction angiography (DSA)?

This procedure may not be suitable if you:

  • Have poor kidney functions
  • Are hypersensitive to the iodinated contrast medium

What are the risks and complications of digital subtraction angiography (DSA)?

DSA is a relatively safe procedure. Complications are rare and may include:

  • Allergy to the contrast medium
  • Bleeding from the puncture site
  • Harmful effects of the contrast medium on other organs (e.g. kidney)

'; const treatmentContainer = document.getElementById('treatment-content-container'); const treatmentTabKey = 'treatment_tab_key'; const treatmentItemUrlName = 'digital-subtraction-angiography'; let treatmentTabs = [{name:"overview",label:"Overview",onclick:"loadContent('treatment-overview', 0)"},{name:"what-to-expect",label:"What to Expect",onclick:"loadContent('treatment-whattoexpect', 1)"},{name:"expertise",label:"Our Expertise & Doctors",onclick:"loadExpertise(2)"},{name:"faq",label:"FAQ",onclick:"loadContent('treatment-faq', 3)"},]; let faqTabEle = document.querySelector('.treatment-tab.faq'); let faqCountEle = document.getElementById('faq-count'); let totalFaq = 0; if (!isNullOrUndefinded(faqCountEle)) { totalFaq = !isEmptyString(faqCountEle.value) ? parseInt(faqCountEle.value) : 0; if (totalFaq === 0) { faqTabEle.remove(); let faqIndex = treatmentTabs.findIndex(fi => fi.name === 'faq'); treatmentTabs = [...treatmentTabs.slice(0, faqIndex), ...treatmentTabs.slice(faqIndex + 1)]; } } var treatTabSwiper; $(document).ready(function () { treatTabSwiper = new Swiper("#treatment-tab-container>.sub-nav-swiper", { slidesPerView: 'auto', watchSlidesProgress: true, navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev", } }); applySavedTabIndex(); }); function loadContent(docId, slideIndex) { const treatmentContentBox = document.getElementsByClassName('treatment-content'); if (typeof treatmentContentBox !== 'undefined' && treatmentContentBox !== null && treatmentContentBox.length > 0) { Array.prototype.forEach.call(treatmentContentBox, function (el) { if (el.tagName === 'DIV') { el.style.display = "none"; } }); } let contentBox = document.getElementById(docId); if (contentBox !== null && typeof contentBox !== 'undefined') { contentBox.style.display = "block"; } toggleExpertiseBox('none'); setTreatmentBottomNav(slideIndex); setTreatmentTopNav(slideIndex); } function loadExpertise(slideIndex) { const treatmentContentBox = document.getElementsByClassName('treatment-content'); if (typeof treatmentContentBox !== 'undefined' && treatmentContentBox !== null && treatmentContentBox.length > 0) { Array.prototype.forEach.call(treatmentContentBox, function (el) { if (el.tagName === 'DIV') { el.style.display = "none"; } }); } setTreatmentBottomNav(slideIndex); setTreatmentTopNav(slideIndex); if (typeof listDisplay_ChangedPage === 'function') { kendo.syncReady(function () { listDisplay_ChangedPage(1); }); } toggleExpertiseBox('block'); } function toggleExpertiseBox(displayStatus) { const expertiseBox = document.getElementsByClassName('omp-content-box'); if (typeof expertiseBox !== 'undefined' && expertiseBox !== null && expertiseBox.length > 0) { if (expertiseBox[0].tagName === 'DIV') { expertiseBox[0].style.display = displayStatus; } } } function setTreatmentTopNav(slideIndex) { saveTabIndex(slideIndex); treatTabSwiper.activeIndex = slideIndex; treatTabSwiper.updateSlidesClasses(); } function saveTabIndex(slideIndex) { var savedObject = { SavedTabIndex: 0, Item: treatmentItemUrlName, LastActive: new Date() }; var getItem = sessionStorage.getItem(treatmentTabKey); if (getItem != null) { savedObject = JSON.parse(getItem); } if (savedObject != null) { savedObject.SavedTabIndex = slideIndex; savedObject.Item = treatmentItemUrlName; savedObject.LastActive = new Date(); var mainSearchJSON = JSON.stringify(savedObject); sessionStorage.setItem(treatmentTabKey, mainSearchJSON); } } function applySavedTabIndex() { var slideIndex = 0; var getItem = sessionStorage.getItem(treatmentTabKey); if (getItem != null) { var savedObject = JSON.parse(getItem); if (savedObject != null && savedObject.SavedTabIndex != null && savedObject.SavedTabIndex > 0 && savedObject.Item === treatmentItemUrlName) { slideIndex = savedObject.SavedTabIndex; } } var savedTab = treatmentTabs[slideIndex]; if (savedTab != null) { document.getElementsByClassName(savedTab.name)[0].click(); } if (slideIndex !== 2) { setTimeout(function () { toggleExpertiseBox('none') }, 1500); } else { if (typeof listDisplay_ChangedPage === 'function') { kendo.syncReady(function () { listDisplay_ChangedPage(1); }); } } } function setTreatmentBottomNav(slideIndex) { saveTabIndex(slideIndex); const prevObj = slideIndex > 0 ? treatmentTabs[slideIndex - 1] : null; const nextObj = slideIndex < treatmentTabs.length - 1 ? treatmentTabs[slideIndex + 1] : null; const previousNavTag = document.getElementById("treatment-sub-nav-pre"); const nextNavTag = document.getElementById("treatment-sub-nav-next"); let previousTagDisplay = 'none', nextTagDisplay = 'none', previousNavText = '', nextNavText = ''; if (!isNullOrUndefinded(previousNavTag)) { if (!isNullOrUndefinded(prevObj)) { previousTagDisplay = 'block'; previousNavText = prevObj.label; previousNavTag.setAttribute('onclick', 'event.preventDefault();scrollTopDedicated(\'treatment-content-container\');' +prevObj.onclick); } previousNavTag.style.display = previousTagDisplay; previousNavTag.innerHTML = previousNavText; } if (!isNullOrUndefinded(nextNavTag)) { if (!isNullOrUndefinded(nextObj)) { nextTagDisplay = 'block'; nextNavText = nextObj.label; nextNavTag.setAttribute('onclick', 'event.preventDefault();scrollTopDedicated(\'treatment-content-container\');'+nextObj.onclick); } nextNavTag.style.display = nextTagDisplay; nextNavTag.innerHTML = nextNavText; } }

Why choose Gleneagles Hospital?

At Gleneagles Hospital, your recovery is our priority. Established in Singapore for more than 60 years, we offer a comprehensive heart and vascular programme through our team of cardiologists, vascular surgeons and cardiothoracic surgeons.

ParkwayHealth Radiology operates radiology centres within our hospital to provide diagnostic and imaging needs for our patients, including digital subtraction angiography, to facilitate your treatment.

Our cardiologists

Our experienced specialists will ensure your comfort and safety during the diagnostic test. Our imaging reports and opinions help your doctor determine the most suitable treatments for your condition.

Male

Female

Please check with your insurance provider for more information, and for their most up-to-date list of panel doctors.

^Specialists may qualify to be on the Extended Panel (EP). You may enjoy selected panel benefits depending on your policy and riders.

0 LISTINGS

Refine your search:

Cancel

Male

Female

"; } tableContent += "

"; var profileImageURL = result.profileImageUrl; if (profileImageURL == "") { profileImageURL = labelItems.DefaultProfileImageUrl; } var designationText = result.designation.trim(); var nameText = labelItems.FormatSalutation.replace("[Salutation]", result.salutation).replace("[Name]", result.displayName); var specialties = result.specialities; var serviceProviderType = result.serviceProviderType; var profileImageAltText = nameText; if (medProfType == defaultItems.MedProfType_Specialist && specialties.length > 0) { profileImageAltText += " - " + specialties[0]; } else if (medProfType == defaultItems.MedProfType_AHP && serviceProviderType != "") { profileImageAltText += " - " + serviceProviderType; } // image tableContent += "

"; tableContent += "

"; tableContent += "

Digital Subtraction Angiography (DSA) Scan | Gleneagles Hospital (1)

"; tableContent += "

"; tableContent += "

"; // close image-content // detail tableContent += "

"; tableContent += "

" + nameText + "

"; if (designationText != "") { tableContent += "

" + designationText + "

"; } var insuranceItems = !isNullOrUndefinded(result.insurancePanel) ? result.insurancePanel.filter(n => n) : []; if (insuranceItems.length) { tableContent += "

" + labelItems.InsurancePanel + "
" + insuranceItems.sort().join(", ") + "

"; } var spokenLanguageItems = !isNullOrUndefinded(result.spokenLanguage) ? result.spokenLanguage.filter(n => n) : []; if (spokenLanguageItems.length) { tableContent += "

" + labelItems.SpokenLanguages + "
" + spokenLanguageItems.sort().join(", ") + "

"; } tableContent += "

"; // close detail-content tableContent += "

"; // close main-content // action tableContent += "

"; var itemURL = result.itemUrl; var profileURL = ""; if (medProfType == defaultItems.MedProfType_Specialist) { profileURL = defaultItems.SPCProfileURL; } else if (medProfType == defaultItems.MedProfType_AHP) { profileURL = defaultItems.AHPProfileURL; } if (profileURL != "" && profileURL != "#") { if (profileURL.indexOf("{item_url}") >= 0) { profileURL = profileURL.replace("{item_url}", itemURL); } else { profileURL = profileURL + "/" + itemURL; } } profileURL += (profileURL.indexOf("?") >= 0 ? "&" : "?") + labelItems.PpaQuery; tableContent += "" + labelItems.ViewProfile + ""; if (medProfType == defaultItems.MedProfType_Specialist) { var spcURLApptForm = labelItems.MakeAppointmentUrl; if (spcURLApptForm != "" && spcURLApptForm != "#") { if (spcURLApptForm.indexOf("{item_url}") >= 0) { spcURLApptForm = spcURLApptForm.replace("{item_url}", itemURL); } else { spcURLApptForm = spcURLApptForm + (spcURLApptForm.indexOf("?") >= 0 ? "&" : "?") + "itemUrl=" + modelData.ItemURL; } } spcURLApptForm += (spcURLApptForm.indexOf("?") >= 0 ? "&" : "?") + "condition=" + "digital-subtraction-angiography"; tableContent += "" + labelItems.MakeAppointment + ""; } tableContent += "

"; // close action-content tableContent += "

Digital Subtraction Angiography (DSA) Scan | Gleneagles Hospital (2024)
Top Articles
Can Dogs Eat Coconut?
Buying points for companion pass
Victory Road Radical Red
Was ist ein Crawler? | Finde es jetzt raus! | OMT-Lexikon
Part time Jobs in El Paso; Texas that pay $15, $25, $30, $40, $50, $60 an hour online
What Are the Best Cal State Schools? | BestColleges
Doublelist Paducah Ky
How Much Is 10000 Nickels
Employeeres Ual
Hardly Antonyms
Campaign Homecoming Queen Posters
Matthew Rotuno Johnson
Https //Advanceautoparts.4Myrebate.com
Slope Unblocked Minecraft Game
Shemal Cartoon
Shreveport Active 911
Morgan And Nay Funeral Home Obituaries
Crossword Nexus Solver
New Stores Coming To Canton Ohio 2022
Nissan Rogue Tire Size
Tamilrockers Movies 2023 Download
Epguides Strange New Worlds
Vegas7Games.com
Ppm Claims Amynta
Tokyo Spa Memphis Reviews
Relaxed Sneak Animations
Bolly2Tolly Maari 2
Mynahealthcare Login
Select The Best Reagents For The Reaction Below.
950 Sqft 2 BHK Villa for sale in Devi Redhills Sirinium | Red Hills, Chennai | Property ID - 15334774
*!Good Night (2024) 𝙵ull𝙼ovie Downl𝚘ad Fr𝚎e 1080𝚙, 720𝚙, 480𝚙 H𝙳 HI𝙽DI Dub𝚋ed Fil𝙼yz𝚒lla Isaidub
Busted! 29 New Arrests in Portsmouth, Ohio – 03/27/22 Scioto County Mugshots
Helloid Worthington Login
Ilabs Ucsf
Broken Gphone X Tarkov
Learn4Good Job Posting
Ripsi Terzian Instagram
Mkvcinemas Movies Free Download
P3P Orthrus With Dodge Slash
A Man Called Otto Showtimes Near Carolina Mall Cinema
Iban's staff
Rocketpult Infinite Fuel
Hermann Memorial Urgent Care Near Me
Jefferson Parish Dump Wall Blvd
Keeper Of The Lost Cities Series - Shannon Messenger
Craigslist Boats Eugene Oregon
Oxford Alabama Craigslist
Bob And Jeff's Monticello Fl
Guy Ritchie's The Covenant Showtimes Near Grand Theatres - Bismarck
Tommy Bahama Restaurant Bar & Store The Woodlands Menu
York Racecourse | Racecourses.net
Inside the Bestselling Medical Mystery 'Hidden Valley Road'
Latest Posts
Article information

Author: Reed Wilderman

Last Updated:

Views: 5637

Rating: 4.1 / 5 (52 voted)

Reviews: 83% of readers found this page helpful

Author information

Name: Reed Wilderman

Birthday: 1992-06-14

Address: 998 Estell Village, Lake Oscarberg, SD 48713-6877

Phone: +21813267449721

Job: Technology Engineer

Hobby: Swimming, Do it yourself, Beekeeping, Lapidary, Cosplaying, Hiking, Graffiti

Introduction: My name is Reed Wilderman, I am a faithful, bright, lucky, adventurous, lively, rich, vast person who loves writing and wants to share my knowledge and understanding with you.