|
1 | 1 | The files ADAS.py, COMS.py and vision.py run on the OBU while the android code runs on a phone. please separate the codes when running locally. The scripts have been put in the same repository only for the sake of convenience.
|
2 | 2 |
|
3 |
| - |
| 3 | +# Smartphone end : |
4 | 4 | Android Project back end taken from : https://github.com/maddevsio/mad-location-manager
|
5 |
| -(did not fork it because by the time i figured that it would be better to just fork it i had already made a loooot of changes to a loooot of files). |
6 |
| - |
7 |
| -The original app was supposed to measure the distance covered. |
8 |
| -This version has been modified slightly to cater to my needs. I needed the filtered position, speed and bearing. |
9 |
| -I removed the files that i didn't need at all, like Loggers (front end). |
10 |
| -I increased the frequency of the sensors to 100Hz (no delay) in order to improve localization (faster convergence) though it does |
11 |
| -consume a little more battery power. |
12 |
| -The app currently prints the filtered coordinates, speed and bearing. |
13 |
| -Further performance improvements will be made in the coming weeks |
14 |
| - |
15 |
| -The excellent back end has been written by this guy->https://github.com/maddevsio . Kudos to him. |
16 |
| -Front end could've been a little more "organized". Gave me a hard time trying to access the position,speed and bearing from the front end(at a fast rate). Then again, it could have been the case simply because I was new to android when I started working on this. |
| 5 | +The app prints and sends the filtered coordinates, speed and heading over the micro-usb port through an OTG to the raspberry pi |
| 6 | + |
| 7 | +# OBU end: |
| 8 | +# ADAS |
| 9 | +An alert generation-transmission system for vehicles. https://www.youtube.com/watch?v=PU8L8YUw1JM |
| 10 | +The android part of this project is in the repository "GPS-IMU" https://github.com/Celestini-Lucifer/GPS-IMU-android-Alert |
| 11 | + |
| 12 | +The ADAS project is meant to run on a raspi. |
| 13 | + |
| 14 | +external dependencies : |
| 15 | + |
| 16 | +opencv (2.4 or better) (pip install python-opencv-3.2.0) |
| 17 | + |
| 18 | +numpy (pip install numpy) |
| 19 | + |
| 20 | +serial (pip install pyserial) |
| 21 | + |
| 22 | +# WHAT IT DOES: |
| 23 | +->The ADAS.py file is the main file which uses the vision.py and COMS.py files. |
| 24 | +ADAS.py is supposed to generate an alert for the user when the vision component(vision.py) detects a threat(collision iminent) or sudden braking(by leveraging the sensors in the mobile) and is supposed to broadcast an alert using communications back end(COMS.py, can use any transceiver that works on UART protocol). |
| 25 | + |
| 26 | +->ADAS.py also checks for the relevance of a received alert. An alert is considered relevant if it is coming from a car in front of us moving in the same direction and on the same road. |
| 27 | + |
| 28 | +->vision.py : determines whether there is a threat in a given frame by taking the image as well as the optical flow of the image as an input parameter. It generates an alert if there is a large (car-size large) object appearing to move towards the bottom center of the image. This method is highly sensitive to lighting conditions and camera position and orientation. The method also generates false positives when the car goes over a bump on the road. |
| 29 | + |
| 30 | +->COMS.py is a communications back end (not really that complex or sophisticated if you take a peek, it just makes our job easier, thats it) which can handle UART communications. It has been tested for xbees in transparent mode and for RF APC220s. Look into ADAS.py for understanding how to use them. |
| 31 | + |
| 32 | +# Further developments : |
| 33 | +-> refining the system hardware. |
| 34 | +-> frequency hopping for different message types. |
| 35 | +-> This project is currently being integrated into a mini self driving car project to tinker with the possibilities of combining V2V communication into autonomous cars https://github.com/naughtyStark/Self-driving-car-STM-32 |
| 36 | + |
17 | 37 |
|
18 | 38 | //============ the rest of the readme is all him ===============
|
19 | 39 |
|
|
0 commit comments