نتایج جستجو برای: feasible motion

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

2010
ALEX GONZAGA

This paper presents a wavelet-based algorithm to attenuate spatially correlated noise represented by a fractional Brownian motion. It generalizes the usual independence assumption by making the spatial relationship depend not only on the variance, but also on a long-memory parameter associated with the decay of autocorrelations. Wiener filtering in the wavelet domain obtains estimates of gray l...

2001
Masahito Yashima

This paper presents mathematical conditions and algorithm for a whole arm manipulation planning with switching contact modes. The motion planning for such a system should consider changing the dynamics and kinematics according to contact modes. We show the conditions about kinematic and dynamics aspects to be satisfied for the motion planning. The conditions give the restriction of feasible con...

Journal: :IEEE Trans. Robotics and Automation 1999
Moëz Cherif

This paper addresses modeling and global motion planning issues for an autonomous wheeled mobile robot moving on an uneven three-dimensional (3-D) terrain. We focus particularly on the issue of dealing with dynamic and wheel/ground interaction constraints. A key feature of our approach is that it incorporates appropriate physical models to cope with the task dynamics in the motion planning para...

Journal: :CoRR 2016
Carlos Leandro Jorge Ambrósio

This work addresses the optimal control of multibody systems being actuated with control forces in order to find a dynamically feasible minimum-energy trajectory of the system. The optimal control problem and its constraints are integrated in a discrete version of the equation of motion allowing the minimization of system energy with respect to a discrete state and control trajectory. The work ...

Journal: :Circulation 2004
Michael Sühling Christian Jansen Muthuvel Arigovindan Peter Buser Stephan Marsch Michael Unser Patrick Hunziker

BACKGROUND Objective, quantitative, segmental noninvasive/bedside measurement of cardiac motion is highly desirable in cardiovascular medicine, but current technology suffers from significant drawbacks, such as subjectivity of conventional echocardiographic reading, angle dependence of tissue Doppler measurements, radiation exposure by computer tomography, and infrastructure requirements in MRI...

2016
Hideyuki Hasegawa Kohji Masuda

Recently, high-frame-rate ultrasound has been extensively studied for measurement of tissue dynamics, such as pulsations of the carotid artery and heart. Motion estimators are very important for such measurements of tissue dynamics. In high-frame-rate ultrasound, the tissue displacement between frames becomes very small owing to the high temporal resolution. Under such conditions, the speckle t...

2014
Amit Sawant Paul Keall Kim Butts Pauly Marcus Alley Shreyas Vasanawala Billy W Loo Jacob Hinkle Sarang Joshi

Cycle-to-cycle variations in respiratory motion can cause significant geometric and dosimetric errors in the administration of lung cancer radiation therapy. A common limitation of the current strategies for motion management is that they assume a constant, reproducible respiratory cycle. In this work, we investigate the feasibility of using rapid MRI for providing long-term imaging of the thor...

Journal: :The International Archives of the Photogrammetry, Remote Sensing and Spatial Information Sciences 2022

Abstract. Radar interferometry has progressed very much in the last two decades. It is now a powerful remote sensing techniques to monitor ground motion. The technique undergone an important development terms of processing and data analysis algorithms. This been accompanied by increase Synthetic Aperture (SAR) acquisition capability spaceborne sensors. A step forward was launch Copernicus Senti...

Journal: :Philosophy & Public Affairs 2016

Journal: :IET Information Security 2020

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

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

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