Skip to content

Commit

Permalink
Fix username in URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
aeddi committed May 22, 2016
1 parent 8381734 commit e28d44d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python OpenCV module for AWS Lambda

This is a simple script that build a deployement package including OpenCV compatible with the AWS Lambda Python runtime. The dynamic library is compiled with all extended instruction sets supported by Lambda CPU and binaries are stripped to save space. You simply need to add your code inside *lambda_funcion.py* and possibly your haar cascades files or additional Python modules. You can download directly a [pre-built archive](https://github.com/Plastic-1/aws-lambda-python-opencv/archive/prebuilt.zip).
This is a simple script that build a deployment package including OpenCV compatible with the AWS Lambda Python runtime. The dynamic library is compiled with all extended instruction sets supported by Lambda CPU and binaries are stripped to save space. You simply need to add your code inside *lambda_funcion.py* and possibly your haar cascades files or additional Python modules. You can download directly a [pre-built archive](https://github.com/aeddi/aws-lambda-python-opencv/releases/download/Prebuilt/aws-lambda-python-opencv-prebuilt.zip).

- Build duration: ~20 min on T2.micro / ~15 min on C4.2xlarge
- Package size without haar cascades included: 26MB
Expand All @@ -10,7 +10,7 @@ This is a simple script that build a deployement package including OpenCV compat

## Module building
### Option 1: with an existing instance
- Download the repo `wget https://github.com/Plastic-1/aws-lambda-python-opencv/archive/master.zip`
- Download the repo `wget https://github.com/aeddi/aws-lambda-python-opencv/archive/master.zip`
- Unzip the archive `unzip master.zip`
- Launch the script `cd aws-lambda-python-opencv-master && ./build.sh`

Expand All @@ -26,7 +26,7 @@ yum update -y
yum install -y git cmake gcc-c++ gcc python-devel chrpath

cd /tmp
wget https://github.com/Plastic-1/aws-lambda-python-opencv/archive/master.zip
wget https://github.com/aeddi/aws-lambda-python-opencv/archive/master.zip
unzip master.zip
chmod 777 aws-lambda-python-opencv-master
cd aws-lambda-python-opencv-master
Expand Down

0 comments on commit e28d44d

Please sign in to comment.