Skip to content

Commit ab3dd7a

Browse files
committed
Fix small typos
1 parent f935e2f commit ab3dd7a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Python OpenCV module for AWS Lambda
22

3-
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).
3+
This is a simple script that builds 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_function.py* and possibly your haar cascades files or additional Python modules. You can directly download a [pre-built archive](https://github.com/aeddi/aws-lambda-python-opencv/releases/download/Prebuilt/aws-lambda-python-opencv-prebuilt.zip).
44

55
- Build duration: ~20 min on T2.micro / ~15 min on C4.2xlarge
66
- Package size without haar cascades included: 26MB
7-
- OpenCV 3.1 by default but may works with newer
7+
- OpenCV 3.1 by default but may work with newer
88

9-
**Need to be built on an Amazon Linux instance.**
9+
**Needs to be built on an Amazon Linux instance.**
1010

1111
## Module building
1212
### Option 1: with an existing instance
@@ -15,12 +15,12 @@ This is a simple script that build a deployment package including OpenCV compati
1515
- Launch the script `cd aws-lambda-python-opencv-master && ./build.sh`
1616

1717
### Option 2: without an existing instance
18-
On the EC2 console, launch a new instance with:
18+
In the EC2 console, launch a new instance with:
1919
- Amazon Linux AMI
2020
- Role with S3 write permission
2121
- Shutdown behavior: *Terminate*
2222
- Paste the script below in the user data text field
23-
```sh
23+
```bash
2424
#!/bin/bash
2525
yum update -y
2626
yum install -y git cmake gcc-c++ gcc python-devel chrpath

0 commit comments

Comments
 (0)