All Projects → Mohamed209 → Automated-Social-Distancing-Monitoring

Mohamed209 / Automated-Social-Distancing-Monitoring

Licence: other
automated social distancing monitoring system

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Automated-Social-Distancing-Monitoring

rid-covid
Image-based COVID-19 diagnosis. Links to software, data, and other resources.
Stars: ✭ 74 (+7300%)
Mutual labels:  detector, coronavirus, covid-19
Social-Distancing-Detection-in-Real-Time
Social distance monitoring in real-time with an IP camera. Optimized for better performance with threading.
Stars: ✭ 52 (+5100%)
Mutual labels:  yolov3, covid-19, social-distancing
covid-19
An app made with Flutter to track COVID-19 case counts.
Stars: ✭ 47 (+4600%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
coronainfobd
Real-time corona-virus tracker of Bangladesh 🇧🇩 which includes latest updates, data visualization, public awareness from WHO and some advice to aware people. 🥰❤
Stars: ✭ 46 (+4500%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
CoronaVirusOutbreakAPI
A tiny and small program to crawler and analyze outbreak of COVID-19 in world and every country using PHP.
Stars: ✭ 20 (+1900%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
CoronaVirus-2019-nCoV-Live-Tracking
CoronaVirus(COVID-19) Live Map Tracker Android Kotlin App
Stars: ✭ 43 (+4200%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
CoronaDash
COVID-19 spread shiny dashboard with a forecasting model, countries' trajectories graphs, and cluster analysis tools
Stars: ✭ 20 (+1900%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
covid-19-usa-by-state
CSV files of COVID-19 total daily confirmed cases and deaths in the USA by state and county. All data from Johns Hopkins & NYT..
Stars: ✭ 35 (+3400%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
coviddata
Daily COVID-19 statistics by country, region, and city
Stars: ✭ 49 (+4800%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
COVID-19-SG
Singapore & Malaysia COVID-19 data from multiple data sources (Zaobao, MOH)
Stars: ✭ 17 (+1600%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
COVID19
A web app to display the live graphical state-wise reported corona cases in India so far. It also shows the latest news for COVID-19. Stay Home, Stay Safe!
Stars: ✭ 122 (+12100%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
covid-19-status
Menu bar widget for MacOS with COVID-19 statistics
Stars: ✭ 50 (+4900%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
covid-19
Open source web map for tracking COVID-19 global cases
Stars: ✭ 23 (+2200%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
covid19-visualized
COVID-19 World update with data Visualization (Include Indonesia cases)
Stars: ✭ 23 (+2200%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
react-covid
Covid Tracker React Application
Stars: ✭ 16 (+1500%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
COVIDvu
Volunteers building and sharing current, accurate, near real-time COVID-19 tracking and prediction tools.
Stars: ✭ 15 (+1400%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
covid19-animation-generator
Generates an animation of COVID-19 data
Stars: ✭ 33 (+3200%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
COVID-19-DETECTION
Detect Covid-19 with Chest X-Ray Data
Stars: ✭ 43 (+4200%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
covidtrackerapiwrapper
CovidSharp is a crossplatform C# API wrapper for the Coronavirus tracking API (https://github.com/ExpDev07/coronavirus-tracker-api)
Stars: ✭ 11 (+1000%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19
COVID-19-STAT
A web application to keep track of COVID-19 numbers & growth across the world
Stars: ✭ 19 (+1800%)
Mutual labels:  coronavirus, coronavirus-tracking, covid-19

forthebadge

Open Source Implementation of landing AI Social Distancing Detector

" In the fight against the coronavirus, social distancing has proven to be a very effective measure to slow down the spread of the disease. While millions of people are staying at home to help flatten the curve, many of our customers in the manufacturing and pharmaceutical industries are still having to go to work everyday to make sure our basic needs are met.

To complement our customers’ efforts and to help ensure social distancing protocol in their workplace, Landing AI has developed an AI-enabled social distancing detection tool that can detect if people are keeping a safe distance from each other by analyzing real time video streams from the camera.

For example, at a factory that produces protective equipment, technicians could integrate this software into their security camera systems to monitor the working environment with easy calibration steps. As the demo shows below, the detector could highlight people whose distance is below the minimum acceptable distance in red, and draw a line between to emphasize this. The system will also be able to issue an alert to remind people to keep a safe distance if the protocol is violated "

source : https://landing.ai/landing-ai-creates-an-ai-tool-to-help-customers-monitor-social-distancing-in-the-workplace/

check original results

original results

this repo acts as open source python implementation to the demo porposed by landingAI

System Architecture

system arch

How to use the repo

1.clone the repo

2. Install dependencies (reccommended in virtual environment)

virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt

3.download YOLOV3 pretrained weights and architecture

mkdir yolo_weights
cd yolo_weights
wget https://pjreddie.com/media/files/yolov3.weights
wget https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolov3.cfg
wget https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names

4.run the code

python main.py --video 'video path'

check sample result of the implementation

my results

Citation

test video taken from http://www.robots.ox.ac.uk/ActiveVision/Research/Projects/2009bbenfold_headpose/Datasets/TownCentreXVID.avi

@article{yolov3, 
  title={YOLOv3: An Incremental Improvement}, 
  author={Redmon, Joseph and Farhadi, Ali}, 
  journal = {arXiv}, 
  year={2018}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].