Advertisement
spliter93

instructions

Jul 11th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. # rpi-simple-object-tracking
  2. Simple frame difference based background subtraction and frame by frame detection based object tracking
  3.  
  4. Tested on `Raspberry PI 3 Model B` running `Raspbian GNU/Linux 9.8 (stretch)` with `Python 3.5.3`. `Raspberry PI NoIR Camera V2` was used.
  5.  
  6. ## Setup
  7. - Download and install `Raspbian` image from [official site](https://www.raspberrypi.org/documentation/installation/installing-images/)
  8.  
  9. - Enable PI Camera
  10.  
  11. `sudo raspi-config`
  12. enable under Interfacing Options -> Camera
  13.  
  14. - Install all dependencies:
  15. ```
  16. sudo apt update
  17. sudo apt install libjasper1 libatlas-base-dev libqt4-test libqtgui4
  18. pip3 install opencv-python
  19. ```
  20.  
  21. ## Running the app
  22. `python3 pitracker/main.py`
  23.  
  24. For all options and parameters check `main.py`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement