نتایج جستجو برای: context aware

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

2016
Haoran XIE Fu Lee Wang

Contextual data of learners play a vital role in various e-learning applications in recent years, as learning contexts not only provide learners with context-aware services but also enhance effectiveness. However, various e-learning systems adopt different contextual models (i.e., application-dependent contextual model), and consequently data sharing and system integration are challenging. In t...

Journal: :IEEE Intelligent Informatics Bulletin 2004
Yugyung Lee Soon Ae Chun James Geller

Pervasive Computing refers to a seamless and invisible computing environment which provides dynamic, proactive and context-aware services to the user by acquiring context knowledge from the environment and composing available services. In this paper, we demonstrate how heterogeneous Web services can be made interoperable and used to support Pervasive Computing. We present an architecture how a ...

2008
Daniele Riboni Linda Pareschi Claudio Bettini

Location based services (LBS) are a specific instance of a broader class of Internet services that are predicted to become popular in a near future: context-aware services. The privacy concerns that LBS have raised are likely to become even more serious when several context data, other than location and time, are sent to service providers as part of an Internet request. This paper provides a cl...

2003
Anu Kankainen Sauli Tiitta

In recent years there has been research on context-aware mobile services that have supported e.g. making appropriate calls, being aware of others, and going on a guided tour. However, there is a lack of user studies that could show that others than engineers and researchers themselves need those services. Therefore, in this paper we will present the results of an observational study on teenage ...

Journal: :Enterprise IS 2011
Ricardo Pérez-Castillo Barbara Weber Jakob Pinggera Stefan Zugal Ignacio García Rodríguez de Guzmán Mario Piattini

Generating event logs from nonprocess-aware systems enabling business process mining Ricardo Pérez-Castillo a , Barbara Weber b , Jakob Pinggera b , Stefan Zugal b , Ignacio García-Rodríguez de Guzmán a & Mario Piattini a a Alarcos Research Group, University of Castilla-La Mancha, Paseo de la Universidad 4, 13071, Ciudad Real, Spain b Quality Engineering, University of Innsbruck, Technikerstraß...

2003
Jadwiga Indulska Ricky Robinson Andry Rakotonirainy Karen Henricksen

2005
François Bry Takashi Hattori Kaoru Hiramatsu Takeshi Okadome Christoph Wieser Tatsumi Yamada

This article presents an approach to context-aware services for “smart buildings” based on Web and Semantic Web techniques. The services striven for are first described, then their realization using Web and Semantic Web services is explained. Finally, advantages of the approach are stressed.

Journal: :Expert Syst. Appl. 2008
Stephen J. H. Yang Jia Zhang Irene Y. L. Chen

Providing context-aware Web services is an adaptive process of delivering contextually matched Web services to meet service requesters’ needs. We define the term ‘‘context’’ from two perspectives: one from service requesters; and the other from Web services. From the former perspective, context is defined as the surrounding environment affecting requesters’ services discovery and access, such a...

2015

Several studies have reported on interaction challenges users face when confronted with proactive contextaware technologies that take actions on their behalf. To address these challenges, techniques have been proposed to improve intelligibility (understanding) of and control over context-aware systems for end-users. Proactive context-aware systems have not only been featured in several smart ho...

2004
Patrik Osbakk Nick Ryan

Dynamic context aware systems need highly flexible privacy protection mechanisms. We describe an extension to an existing RBAC-based mechanism that utilises a dynamic measure of invasiveness to determine whether contextual information should be released.

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

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

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