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
Paramount Plus/SHOWTIME Bundle Review 2023
He lost $340,000 to a crypto scam. Such cases are on the rise
Netronline Taxes
Victor Spizzirri Linkedin
Warren Ohio Craigslist
Trevor Goodwin Obituary St Cloud
12 Rue Gotlib 21St Arrondissem*nt
Practical Magic 123Movies
Bustle Daily Horoscope
Rainfall Map Oklahoma
What’s the Difference Between Cash Flow and Profit?
Used Wood Cook Stoves For Sale Craigslist
Everything You Need to Know About Holly by Stephen King
Zürich Stadion Letzigrund detailed interactive seating plan with seat & row numbers | Sitzplan Saalplan with Sitzplatz & Reihen Nummerierung
Leeks — A Dirty Little Secret (Ingredient)
Craiglist Kpr
使用 RHEL 8 时的注意事项 | Red Hat Product Documentation
Uta Kinesiology Advising
The Blind Showtimes Near Amc Merchants Crossing 16
Stoney's Pizza & Gaming Parlor Danville Menu
67-72 Chevy Truck Parts Craigslist
Www Va Lottery Com Result
2000 Ford F-150 for sale - Scottsdale, AZ - craigslist
Margaret Shelton Jeopardy Age
10 Best Quotes From Venom (2018)
WOODSTOCK CELEBRATES 50 YEARS WITH COMPREHENSIVE 38-CD DELUXE BOXED SET | Rhino
County Cricket Championship, day one - scores, radio commentary & live text
R/Orangetheory
Donald Trump Assassination Gold Coin JD Vance USA Flag President FIGHT CIA FBI • $11.73
Emiri's Adventures
Wbli Playlist
Tenant Vs. Occupant: Is There Really A Difference Between Them?
Oreillys Federal And Evans
AsROck Q1900B ITX und Ramverträglichkeit
Build-A-Team: Putting together the best Cathedral basketball team
Toonily The Carry
World History Kazwire
Frcp 47
Metro Pcs Forest City Iowa
Differential Diagnosis
Foxxequeen
Gli italiani buttano sempre più cibo, quasi 7 etti a settimana (a testa)
What is a lifetime maximum benefit? | healthinsurance.org
New Zero Turn Mowers For Sale Near Me
De boeken van Val McDermid op volgorde
Roller Znen ZN50QT-E
Diesel Technician/Mechanic III - Entry Level - transportation - job employment - craigslist
Epower Raley's
What Responsibilities Are Listed In Duties 2 3 And 4
Ranking 134 college football teams after Week 1, from Georgia to Temple
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.