https://github.com/hrichharms/proximity-warning
Provides the foundation of a camera based proximity warning and ride camera system.
https://github.com/hrichharms/proximity-warning
computer-vision steganography vehicle-detection
Last synced: 24 days ago
JSON representation
Provides the foundation of a camera based proximity warning and ride camera system.
- Host: GitHub
- URL: https://github.com/hrichharms/proximity-warning
- Owner: hrichharms
- Created: 2021-10-19T22:30:06.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-08T22:43:58.000Z (about 3 years ago)
- Last Synced: 2025-02-14T17:43:20.479Z (3 months ago)
- Topics: computer-vision, steganography, vehicle-detection
- Language: Python
- Homepage:
- Size: 128 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

## Proximity Warning System
The purpose of this repository is to provide the proof of concept for a camera based proximity warning and ride camera system.
The classifier system included in this project isn't particularly accurate. For a production environment, a more sophisticated solution is advised.
Included Haar Cascade Classifier taken from [here](https://github.com/AdityaPai2398/Vehicle-And-Pedestrian-Detection-Using-Haar-Cascades).
## Components
The source code for each component listed below can be found in separate folders in src.
### Detector (Python 3)
- able to be run as independent program or imported as python module
- when run as an independent program, the detector monitors either provided video frames or captured camera frames (raspberry pi camera module) for vehicles and prints warning decisions for each evaluated frame to standard output
- when imported as python module, provides access to:
- `Detector` class: provides high-level access to a given haar classifier specialized for simple proximity detection.### Detector (C++)
- independent executable, which monitors provided video frames for vehicles and prints warning decisions for each evaluated frame to standard output