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

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

2013
Matthew J. Stainer Kenneth C. Scott-Brown Benjamin W. Tatler

Recent research has begun to address how CCTV operators in the modern control room attempt to search for crime (e.g., Howard et al., 2011). However, an often-neglected element of the CCTV task is that the operators have at their disposal a multiplexed wall of scenes, and a single spot-monitor on which they can select any of these feeds for inspection. Here we examined how 2 trained CCTV operato...

Journal: :Strategic Journal of Business & Change Management 2023

Despite the police-operated closed-circuit television (CCTV) system in Nairobi City County being operational since mid-2015, insecurity remains a big problem. Hence, this study endeavored to establish challenges hindering its effective use. The used convergent parallel mixed-methods design, integrating data from surveys, focus groups, and key informant interviews. sample was obtained police off...

2009
Christina J. Howard Tomasz Troscianko Iain D. Gilchrist Ardhendu Behera David C. Hogg

Monitoring closed-circuit television (CCTV) for security purposes is a task requiring sustained attention and the processing of many complex, constantly changing visual elements. Studies of performance in such tasks reveal a high level of workload and rapid loss of performance as workload is increased. Similarly, laboratory based experimental paradigms suggest that performance in CCTV monitorin...

2003
Luis M. Fuentes Sergio A. Velastin

Using a simple but robust real-time algorithm that allows tracking of multiple objects in complex environments, the authors propose an application in automatic surveillance by linking blobs’ information, in terms of trajectories and positions, with the events to be detected. Working in the background of the CCTV surveillance systems and based on whether a selected event has been detected or not...

2005
Ginés García-Mateos Andrés García-Meroño Cristina Vicente-Chicote Alberto Ruiz Pedro E. López-de-Teruel

Automatic recognition of time and date stamps in CCTV video enables the inclusion of time-based queries in video indexing applications. Such ability needs to deal with problems of low character resolution, non-uniform background, multiplexed video format, and random access to the video file. In this paper, we address these problems and propose a technique that solves the difficult task of chara...

Journal: :International journal of engineering and advanced technology 2021

The urban center residential district Railway is one in every of the busiest railway stations Bharat and carries over seven.5 million commuters daily. railways spreads 123.78 km (76.91 mi).The Railways encompass thirty-nine stations. Trains typically begin from terminate at necessary line with a survey ,the total stats given by RPF(Railway Police Force) & GRP(GOVERNMENT RAILWAY POLICE), 2,7...

Journal: :Vision Research 1996
PAUL J. BECKMANN GORDON E. LEGGE

Most people with low vision require magnification to read. A magnifier's field of view often contains only a few letters at a time. Page navigation is the process by which the reader moves the magnifier from word to word, and from the end of one line to the beginning of the next line. Page navigation takes time and reduces reading speed. The major questions addressed in this paper are: (1) What...

2013
Kiyoshi Murata Karin Axelsson

Whereas the benefit and harm of a widespread deployment of CCTV cameras is controversial among scholars, ordinary people seem to have accepted CCTV systems as an electronic moral gaze. However, a massive amount of personal information has already been collected and stored in private and public databases, and dataveillance systems using ubiquitous devices automatically collect, store, process, u...

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

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

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