نتایج جستجو برای: tc 99m pertechnetate scan

تعداد نتایج: 110735  

  Tc-99m pertechnetate scintigraphy is the modality of choice for diagnosis of Meckel's diverticulum. Interpretation of Meckel's scan identifies a focal area of radiopharmaceutical uptake in the anterior abdomen similar to normal gastric mucosa. The activity must be of the same pattern and intensity as gastric uptake. We present a 13-year-old patient with gastrointest...

Journal: :Clinical nuclear medicine 1992
R G Leckie A B Buckner M Bornemann

A 64-year-old man presented with clinical unilateral thyroiditis after chronic left neck trauma from his car seat belt. Thyroid function tests were normal. The initial thyroid Tc-99m pertechnetate scan demonstrated decreased uptake in the entire left lobe of the thyroid. The follow-up scan 1 month later showed a more normal uptake in the left lobe. This patient's clinical course, laboratory val...

Journal: :Annals of nuclear medicine 1999
P O Kiratli I Peksoy B Erbaş G Gedikoğlu N Karabulut

A 37-year-old male with a persistent increased parathyroid hormone level, after subtotal thyroidectomy and parathyroidectomy, was referred for scintigraphic localization of a possible ectopic parathyroid adenoma. Tc-99m pertechnetate and Tc-99m MIBI scintigraphy were performed on separate days. There was marked uptake of both tracers in the mediastinum, which at surgery was confirmed to be an e...

Journal: :RoFo : Fortschritte auf dem Gebiete der Rontgenstrahlen und der Nuklearmedizin 2015
H Korkusuz C Happel J Klebe H Ackermann F Grünwald

PURPOSE The aim of this study is to evaluate structural alterations of thyroid tissue after microwave ablation using elastography and scintigraphic imaging to investigate the applicability of these diagnostic methods for follow-up.  MATERIALS AND METHODS 35 patients with 39 thyroid nodules were evaluated using elastography and scintigraphic imaging before and after ultrasound-guided microwave...

Journal: :European journal of endocrinology 2003
Domenico Rubello Andrea Piotto Dario Casara Pier Carlo Muzzio Brahm Shapiro Maria Rosa Pelizzo

OBJECTIVE In the last decade, surgery of primary hyperparathyroidism (HPT) due to a solitary adenoma has moved on from the traditional wide bilateral neck exploration (BNE) to more limited approaches such as unilateral neck exploration and minimally invasive parathyroidectomy. DESIGN To define the role of intraoperative gamma probe and injection of a low (99m)Tc-MIBI dose in performing minima...

Meckel's diverticulum is a common congenital disorder which may result in Gl bleeding. For definite diagnosis before surgery, radiographic procedures such as small intestine barium studies are not greatly successful; on the other hand Tc-99m-Pertechnetate imaging is a physiologic and noninvasive method with high sensitivity and specificity. In this report, three patients with rectorrhagia...

2015
M. TUNCEL

Follicular thyroid carcinoma is common in regions with insufficient iodine diets and represents approximately 10-20 % of all thyroid malignancies1,2. The treatment of patients suffering from follicular thyroid carcinoma includes surgery and radioiodine therapy3. Although after definitive therapy, the survival of these patients is good, these patients need to be followed for local recurrences an...

Journal: :Endocrine-related cancer 2001
F Lumachi M Ermani S Basso P Zucchetta N Borsato G Favia

A series of 253 consecutive patients with proved primary hyperparathyroidism due to parathyroid tumours was reviewed. There were 68 (26.9%) men and 185 (73.1%) women, with a median age of 57 years (range 13-82 years). All patients, prior to successful parathyroidectomy, underwent one or more preoperative localization procedures such as: neck ultrasonography (US) in 191 (75.5%), (201)Tl/(99m)Tc-...

Journal: :Journal of Nippon Medical School = Nippon Ika Daigaku zasshi 2006
Yo Kidokoro-Kunii Naoya Emoto Keiichi Cho Shinichi Oikawa

To determine the factors associated with 20 minute Tc-99m pertechnetate thyroid uptake, we examined all patients in whom thyrotoxicosis was diagnosed at Chiba-Hokusoh Hospital, Nippon Medical School from 2001 April through 2003 March. Patients with thyrotoxicosis diagnosed during this period were 57 with Graves' disease (76%), 11 with transient hyperthyroxinemia (TH)(14.7%), and 7 with subacute...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->