April 2018
Intermediate to advanced
280 pages
6h 18m
English
The code for this recipe takes an image file and verifies whether the image has a face and that it isn't a spoofed image. It makes two calls to the Vision API to determine this:
$ virtualenv ENV$ source ENV/bin/activate$ pip install -r requirements.txt
The following is the contents of the requirements.txt file:
google-cloud-storage==1.7.0google-cloud-vision==0.30.0Pillow==5.0.0