/usb_cam

Primary LanguagePython

Raspberry pi setup

Connecting to an access point

sudo raspi-config

Go to Network->WiFi, select the needed access point, enter the password and connect to it
To find out your IP address, enter

hostname -I

Installing dependencies

Updating:

sudo apt update
sudo apt upgrade

Installing the python package manager and supporting packages

sudo apt install python3-dev python3-pip python3-numpy

Installing openCV

sudo apt install python3-opencv

App launch

Downloading the project repository

git clone https://github.com/11110110011/webcam.git/

and run the app

cd webcam
python3 app.py -i (ip address raspberry pi) -p (port) -s (serial port)

Open a browser and type in

(ip address raspberry pi):(port)

For example:

192.168.1.25:5000