نتایج جستجو برای: clipping

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

2014
Xianfeng Yi Changqu Liu

Although resprouting plays an important role in facilitating persistence of damaged seedlings, the functional attributes of cotyledons and taproots during resprouting of 1-year oak seedlings are not well explored. In this study, cotyledons were removed from Quercus mongolica seedlings to explore resprouting in response to simulated disturbance as a function of shoot clipping, and to examine the...

Journal: :Comput. Graph. Forum 2012
Åsmund Birkeland Stefan Bruckner Andrea Brambilla Ivan Viola

Clipping is a fast, common technique for resolving occlusions. It only requires simple interaction, is easily understandable, and thus has been very popular for volume exploration. However, a drawback of clipping is that the technique indiscriminately cuts through features. Illustrators, for example, consider the structures in the vicinity of the cut when visualizing complex spatial data and ma...

2014
Nobutaka Horie Mitsutoshi Iwaasa Eiji Isotani Shunsuke Ishizaka Tooru Inoue Izumi Nagata

Volume management is critical for assessment of cerebral vasospasm after aneurysmal subarachnoid hemorrhage (SAH). This multicenter prospective cohort study compared the impact of surgical clipping versus endovascular coiling on postoperative hemodynamics and pulmonary edema in patients with SAH. Hemodynamic parameters were measured for 14 days using a transpulmonary thermodilution system. The ...

2015
Zeinab Taheri Mohammad Hosein Harirchian Hosein Ghanaati Alireza Khoshnevisan Payman Salamati Mojtaba Miri Kavous Firouznia Mina Saeednejad Madjid Shakiba Vafa Rahimi-Movaghar

BACKGROUND Management of intracranial aneurysms has made debates about the best treatment modality in recent years. The aim of this study was to compare the interventional outcomes between two groups of patients, one treated with endovascular coiling and the other treated with surgical clipping. METHODS This prospective study included 48 patients with intracranial aneurysms who underwent endo...

2016
Shatrughna Prasad Yadav Subhash Chandra Bera

Abstract-Orthogonal frequency division multiplexing (OFDM) is preferred for mobile communications applications due to its increased data transmission capability. At one hand, it has advantages of being robust to multipath fading and possessing high data rate transmission capability, on the other hand it suffers from high peak to average power ratio (PAPR). In this paper FPGA implementation of c...

2015
Ori Segev Antonina Polevikove Lior Blank Daniel Goedbloed Eliane Küpfer Anna Gershberg Avi Koplovich Leon Blaustein Hector Escriva

Tail-tip clipping is a common technique for collecting tissue samples from amphibian larvae and adults. Surprisingly, studies of this invasive sampling procedure or of natural tail clipping--i.e., bites inflicted by predators including conspecifics--on the performance and fitness of aquatic larval stages of urodeles are scarce. We conducted two studies in which we assessed the effects of poster...

Journal: :The Journal of experimental biology 2003
Sandra Stekelenburg-de Vos Nicolette T C Ursem Wim C J Hop Juriy W Wladimiroff Adriana C Gittenberger-de Groot Robert E Poelmann

In the venous clip model specific cardiac malformations are induced in the chick embryo by obstructing the right lateral vitelline vein with a microclip. Clipping alters venous return and intracardiac laminar blood flow patterns, with secondary effects on the mechanical load of the embryonic myocardium. We investigated the instantaneous effects of clipping the right lateral vitelline vein on he...

Journal: :AJNR. American journal of neuroradiology 2011
W Brinjikji A A Rabinstein D M Nasr G Lanzino D F Kallmes H J Cloft

BACKGROUND AND PURPOSE Endovascular therapy has increasingly become an acceptable option for treatment of unruptured aneurysms. To better understand the recent trends in the use of and outcomes related to coiling compared with clipping for unruptured aneurysms in the United States, we evaluated the NIS. MATERIALS AND METHODS Hospitalizations for clipping or coiling of unruptured cerebral aneu...

Journal: :Journal of environmental sciences 2012
Huagang Huang Tingqiang Li D K Gupta Zhenli He Xiao-E Yang Bingnan Ni Mao Li

Improving the efficacy of phytoextraction is critical for its successful application in metal contaminated soils. Mineral nutrition affects plant growth and metal absorption and subsequently the accumulation of heavy metal through hyper-accumulator plants. This study assessed the effects of di-hydrogen phosphates (KH2PO4, Ca(H2PO4)2, NaH2PO4 and NH4H2PO4) application at three levels (22, 88 and...

Journal: :Journal of neurosurgery 2000
T Koyama K Hongo Y Tanaka S Kobayashi

Despite recent advances in three-dimensional imaging based on a voxel-rendering method, these techniques do not simulate the morphological changes that occur during surgery. The authors' goal was to develop a computer-graphics model to simulate the manipulation that occurs during surgery when clipping a cerebral aneurysm. The authors developed an application program to interpolate the contours ...

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

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

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"; } -->