From 9accc345411eb60d0573f387070f4dc253d89cfb Mon Sep 17 00:00:00 2001 From: Eben Kouao Date: Fri, 29 Oct 2021 15:54:30 +0100 Subject: [PATCH] ci(build): add gitignore --- .DS_Store | Bin 8196 -> 0 bytes .gitignore | 46 ++++++++++++++++++++++++++++++++++++++++++++++ README.md | 12 +++++++++--- 3 files changed, 55 insertions(+), 3 deletions(-) delete mode 100644 .DS_Store create mode 100644 .gitignore diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 6f7da4d252c41b805a7f06d3d43c2a32c4a1825e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8196 zcmeHM&ubGw6n@jzcGrkR5v<^0p$A1uY1LZ9OPVG^pjPP?E2yoT?$Ru5cEe`VAf*sI zh!;JVdhy^7y!kg&{U7{CJnJ_fZrc1G>!#@9f{)BflibFz!6*)hB4{@;bSQ*DC|fSu81kC2c}$^DlwRJ z$GpYqz=Fb#MCndUx)W0?GgYB5u{!)LK_^y_sC%t|R$x#8Ub~yLfx5j;UT^&#ZB&D( zidp`Jx`TH0moSWo#%Pf$v_NHABAd#UV1T{b$F3v3Pht0LppX4I6?+uB@W6NZj#81o zfV=zHz;{Dp-mOdLP-Vi8Zqc(Uq; zZqzPDtz6vhJ51gciIL1W5d557jO37zW?y?)BacCMNHiR>70Ch(0{|IPmo}9#@>kPjRQt%z8;lIN-*R5 zqp68AyZiI$81=~gE2mLAdYvsh4udG%L~Ooyla`S<^HidHz$tvpZvV&3E`rsYZYCv2 zi8>CJ0we|>H&Y%j;c=}eF)}=KdT{9ngv>~i3|4QdY~Egbwe(t~N+$D9!W_-aNSlm! zspRQqzkdEB1%T`$NkB diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cf4e265 --- /dev/null +++ b/.gitignore @@ -0,0 +1,46 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# next.js +/.next/ +/out/ + +# production +/build + +# misc +.DS_Store +*.pem + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# local env files +env +.env/ +.env +.env.local +.env.development.local +.env.test.local +.env.production.local +dev.env + +# vercel +.vercel + +#logs +*.log + + +#_pycache +__pycache__/ + diff --git a/README.md b/README.md index 3a91110..7265b99 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,8 @@ The Pi streams the output of the camera module over the web via Flask. Devices c ## Screenshots | ![Setup](readme/pi-stream-client.jpg) | ![Live Pi Camera Stream](readme/pi-stream-screen-capture.jpg) | -|---|---| -| Pi Setup | Pi - Live Stream | +| ------------------------------------- | ------------------------------------------------------------- | +| Pi Setup | Pi - Live Stream | ## Preconditions @@ -42,7 +42,13 @@ sudo pip3 install opencv-python ``` -pip3 install opencv-python +Note: This installation of opencv may take a while depending on your pi model. + +OpenCV alternate installation (in the event of failed opencv builds): + +``` +sudo apt-get install libopencv-dev python3-opencv +``` ## Step 1 – Cloning Raspberry Pi Camera Stream Open up terminal and clone the Camera Stream repo: