aws-lambda-python-opencv icon indicating copy to clipboard operation
aws-lambda-python-opencv copied to clipboard

Simple script that builds an AWS Lambda deployment package including OpenCV

Results 4 aws-lambda-python-opencv issues
Sort by recently updated
recently updated
newest added

Thanks! Prebuild package worked for me on **Python 2.7** Python 3 throws this error: _ImportError: dynamic module does not define module export function (PyInit_cv2)_

CV good, but when I try to do: vc = cv2.VideoCapture("foo.mp4") I find that: vc.get(cv2.CAP_PROP_FRAME_COUNT) Is always returning 0.0

Hi, I get this error: `'module' object has no attribute 'SURF': AttributeError` when I try to use SURF. This line calls the SURF method: `detector = cv2.SURF(400, 5, 5)` I've...

Hi, I am hoping to use this project to work around my opencv lambda function filesize issue. My current lambda zip is too large to be used. If I follow...