April 2017
Beginner to intermediate
312 pages
7h 23m
English
Let's make sure that the OpenCV installation and its Python bindings work. Launch the command-line terminal and make sure that you have launched the cv virtual environment by executing the workon cv command (you can verify that you are in the cv virtual environment):

Now, let's make sure that our installation works correctly. Launch the Python interpreter from the command line and try to import the cv2 module:
>>> import cv2 >>> cv2.__version__ '3.0.0'
This proves that OpenCV is installed on the Raspberry Pi Zero. Let's write a hello world example involving ...
Read now
Unlock full access