Raspberry Pi 4 – Install OpenCV 4

In this tutorial you will learn how to install OpenCV 4 on the Raspberry Pi 4 and Raspbian Buster.

You will learn how to install OpenCV 4 on Raspbian Buster via both:

  1. A simple pip-install method (which can be completed in a matter of minutes)
  2. Compiling from source (which will take longer but will give you access to the full, optimized install of OpenCV)

To learn more about installing OpenCV 4 on the Raspberry Pi 4 and Raspbian Buster, just keep reading.

Install OpenCV 4 on Raspberry Pi 4 and Raspbian Buster

In this tutorial we will install and test OpenCV 4 on Raspbian Buster in five simple, easy-to-follow steps.

If you’ve ever compiled OpenCV from scratch before, you know that the process is especially time-consuming and even painstakingly frustrating if you miss a key step or if you are new to Linux and Bash.

In Q4 2018, a new, faster method for installing OpenCV on the Raspberry Pi (i.e., a pip install) was made possible thanks to the hard work of the following people:

Installing OpenCV via pip is easier than ever. In fact, you can be up and running (Step #1 – Step #4a) in less than 10 minutes.

But what’s the catch?

Using pip to install OpenCV is great, but for some projects (including many educational projects on PyImageSearch.com and in my books/courses) you might want the complete install of OpenCV (which the pip install won’t give you).

Don’t worry, I’ve got you covered in Step #4b below — you’ll learn to use CMake and Make to compile OpenCV 4 on BusterOS from scratch.

Let’s dive in!

Before we begin: Grab your Raspberry Pi and flash BusterOS to your microSD

Let’s review the hardware requirements for this tutorial:

  • Raspberry Pi: Despite the title of this tutorial, you may use the Raspberry Pi hardware including 3B, 3B+, or 4B to install OpenCV 4. These instructions only apply to Raspbian Buster, however.
  • 32GB microSD: I recommend the high-quality SanDisk 32GB 98Mb/s cards. Here’s an example on Amazon (however you can purchase them on your favorite online distributor).
  • microSD adapter: You’ll need to purchase a microSD to USB adapter so you can flash the memory card from your laptop.

If you don’t already have a Raspberry Pi 4, I highly recommend CanaKits (which are available on Amazon) and directly through Canakit’s website. Most of their kits come with a Raspberry Pi, power adapter, microSD, microSD adapter, heatsinks, and more!

Figure 1: Hardware for installing OpenCV 4 on your Raspberry Pi 4 running Raspbian Buster.

Once you have the hardware ready, you’ll need to flash a fresh copy of the Raspbian Buster operating system to the microSD card.

  1. Head on over to the official BusterOS download page (Figure 2), and start your download. I recommend the “Raspbian Buster with Desktop and recommended software”.
  2. Download Balena Etcher — software for flashing memory cards. It works on every major OS.
  3. Use Etcher to flash BusterOS to your memory card (Figure 3).

Figure 2: Download Raspbian Buster for your Raspberry Pi and OpenCV 4.

After downloading the Raspbian Buster .img file you can flash it to your micro-SD card using Etcher:

Figure 3: Flash Raspbian Buster with Etcher. We will use BusterOS to install OpenCV 4 on our Raspberry Pi 4.

After a few minutes the flashing process should be complete — slot the micro-SD card into your Raspberry Pi 4 and then boot.

From there you can move on to the rest of the OpenCV install steps in this guide.

Step #1: Expand filesystem and reclaim space

For the remainder of this tutorial I’ll be making the following assumptions:

  1. You are working with a brand new, fresh install of Raspbian Buster (see the previous section to learn how to flash Buster to your microSD).
  2. You are comfortable with the command line and Unix environments.
  3. You have an SSH or VNC connection established with your Pi. Alternatively, you could use a keyboard + mouse + screen.

Go ahead and insert your microSD into your Raspberry Pi and boot it up with a screen attached.

Once booted, configure your WiFi/ethernet settings to connect to the internet (you’ll need an internet connection to download and install required packages for OpenCV).

From there you can use SSH as I have done, or go ahead and open a terminal.

The first step is to run, raspi-config and expand your filesystem:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo raspi-config

And then select the “7 Advanced Options” menu item:

Figure 4: The raspi-config configuration screen for Raspbian Buster. Select 7 Advanced Options so that we can expand our filesystem.

Followed by selecting “A1 Expand filesystem”:

Figure 5: The A1 Expand Filesystem menu item allows you to expand the filesystem on your microSD card containing the Raspberry Pi Buster operating system. Then we can proceed to install OpenCV 4.

Once prompted, you should select the first option, “A1 Expand File System”, hit enter  on your keyboard, arrow down to the “<Finish>” button, and then reboot your Pi — you may be prompted to reboot, but if you aren’t you can execute:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo reboot

After rebooting, your file system should have been expanded to include all available space on your micro-SD card. You can verify that the disk has been expanded by executing df -h and examining the output:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

12345678910$ df -hFilesystem      Size  Used Avail Use% Mounted on/dev/root        29G  5.3G   23G  20% /devtmpfs        1.8G     0  1.8G   0% /devtmpfs           1.9G     0  1.9G   0% /dev/shmtmpfs           1.9G  8.6M  1.9G   1% /runtmpfs           5.0M  4.0K  5.0M   1% /run/locktmpfs           1.9G     0  1.9G   0% /sys/fs/cgroup/dev/mmcblk0p1  253M   40M  213M  16% /boottmpfs           386M     0  386M   0% /run/user/1000

As you can see, my Raspbian filesystem has been expanded to include all 32GB of the micro-SD card.

However, even with my filesystem expanded, I have already used 15% of my 32GB card.

While it’s not required, I would suggest deleting both Wolfram Engine and LibreOffice to reclaim ~1GB of space on your Raspberry Pi:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1234$ sudo apt-get purge wolfram-engine$ sudo apt-get purge libreoffice*$ sudo apt-get clean$ sudo apt-get autoremove

Step #2: Install dependencies

The following commands will update and upgrade any existing packages, followed by installing dependencies, I/O libraries, and optimization packages for OpenCV:

The first step is to update and upgrade any existing packages:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo apt-get update && sudo apt-get upgrade

We then need to install some developer tools, including CMake, which helps us configure the OpenCV build process:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo apt-get install build-essential cmake pkg-config

Next, we need to install some image I/O packages that allow us to load various image file formats from disk. Examples of such file formats include JPEG, PNG, TIFF, etc.:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterPython

1$ sudo apt-get install libjpeg-dev libtiff5-dev libjasper-dev libpng-dev

Just as we need image I/O packages, we also need video I/O packages. These libraries allow us to read various video file formats from disk as well as work directly with video streams:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

12$ sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev$ sudo apt-get install libxvidcore-dev libx264-dev

The OpenCV library comes with a sub-module named highgui which is used to display images to our screen and build basic GUIs. In order to compile the highgui module, we need to install the GTK development library and prerequisites:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

123$ sudo apt-get install libfontconfig1-dev libcairo2-dev$ sudo apt-get install libgdk-pixbuf2.0-dev libpango1.0-dev$ sudo apt-get install libgtk2.0-dev libgtk-3-dev

Many operations inside of OpenCV (namely matrix operations) can be optimized further by installing a few extra dependencies:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo apt-get install libatlas-base-dev gfortran

These optimization libraries are especially important for resource-constrained devices such as the Raspberry Pi.

The following pre-requisites are for Step #4a and they certainly won’t hurt for Step #4b either. They are for HDF5 datasets and Qt GUIs:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterPython

12$ sudo apt-get install libhdf5-dev libhdf5-serial-dev libhdf5-103$ sudo apt-get install libqtgui4 libqtwebkit4 libqt4-test python3-pyqt5

Lastly, let’s install Python 3 header files so we can compile OpenCV with Python bindings:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo apt-get install python3-dev

If you’re working with a fresh install of the OS, it is possible that these versions of Python are already at the newest version (you’ll see a terminal message stating this).

Step #3: Create your Python virtual environment and install NumPy

We’ll be using Python virtual environments, a best practice when working with Python.

A Python virtual environment is an isolated development/testing/production environment on your system — it is fully sequestered from other environments. Best of all, you can manage the Python packages inside your your virtual environment inside with pip (Python’s package manager).

Of course, there are alternatives for managing virtual environments and packages (namely Anaconda/conda). I’ve used/tried them all, but have settled on pip, virtualenv, and virtualenvwrapper as the preferred tools that I install on all of my systems. If you use the same tools as me, you’ll receive the best support from me.

You can install pip using the following commands:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1234$ wget https://bootstrap.pypa.io/get-pip.py$ sudo python get-pip.py$ sudo python3 get-pip.py$ sudo rm -rf ~/.cache/pip

Let’s install  virtualenv  and virtualenvwrapper  now:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo pip install virtualenv virtualenvwrapper

Once both virtualenv  and virtualenvwrapper  have been installed, open up your ~/.bashrc  file:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ nano ~/.bashrc

…and append the following lines to the bottom of the file:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1234# virtualenv and virtualenvwrapperexport WORKON_HOME=$HOME/.virtualenvsexport VIRTUALENVWRAPPER_PYTHON=/usr/bin/python3source /usr/local/bin/virtualenvwrapper.sh

Figure 6: Using the nano editor to update ~/.bashrc with virtualenvwrapper settings.

Save and exit via ctrl + x , y , enter .

From there, reload your ~/.bashrc  file to apply the changes to your current bash session:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ source ~/.bashrc

Next, create your Python 3 virtual environment:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ mkvirtualenv cv -p python3

Here we are creating a Python virtual environment named cv  using Python 3. Going forward, I recommend Python 3 with OpenCV 4+.

Note: Python 2.7 will reach end of its life on January 1st, 2020 so I do not recommend using Python 2.7.

You can name the virtual environment whatever you want, but I use cv  as the standard naming convention here on PyImageSearch.

If you have a Raspberry Pi Camera Module attached to your RPi, you should install the PiCamera API now as well:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ pip install “picamera[array]”

Step #4(a or b): Decide if you want the 1-minute quick install or the 2-hour complete install

From here you need to make a decision about the rest of your install. There are two options.

  1. Step #4a: pip install OpenCV 4: If you decide to pip install OpenCV, you will be done in a matter of seconds. It is by far the fastest, easiest method to install OpenCV. It is the method I recommend for 90% of people — especially beginners. After this step, you will skip to Step #5 to test your install.
  2. Step #4b: Compile OpenCV 4 from source: This method gives you the full install of OpenCV 4. It will take 2-4 hours depending on the processor in your Raspberry Pi.

As stated, I highly encourage you to use the pip instructions. They are faster and will work for 90% of your projects. Additionally, the patented algorithms can only be used for educational purposes (there are plenty of great alternatives to the patented algorithms too).

Step #4a: pip install OpenCV 4

In a matter of seconds, you can pip install OpenCV into the   cv virtual environment:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ pip install opencv-contrib-python

Figure 7: To quickly install OpenCV 4 on your Raspberry Pi 4 running Raspbian Buster, I recommend using pip as shown.

If you watch the terminal output of the above screenshot carefully you’ll see that OpenCV 3.4 rather than OpenCV 4 was installed?

What gives?

At the time of this writing, PiWheels has not been updated with pre-complied OpenCV 4 binaries for Raspbian Buster. PiWheels normally lags slightly behind the latest version of OpenCV, likely to ensure compatibility across the major Raspbian releases. Once OpenCV 4 has been released for PiWheels I will update this section.

That’s really all there is to it. You may skip to Step #5 now to test your install.

Step #4b: Compile OpenCV 4 from source

This option installs the full install of OpenCV including patented (“Non-free”) algorithms.

Note: Do not follow Step #4b if you followed Step #4a.

Let’s go ahead and download the OpenCV source code for both the opencv and opencv_contrib repositories, followed by unarchiving them:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1234567$ cd ~$ wget -O opencv.zip https://github.com/opencv/opencv/archive/4.1.1.zip$ wget -O opencv_contrib.zip https://github.com/opencv/opencv_contrib/archive/4.1.1.zip$ unzip opencv.zip$ unzip opencv_contrib.zip$ mv opencv-4.1.1 opencv$ mv opencv_contrib-4.1.1 opencv_contrib

For this blog post, we’ll be using OpenCV 4.1.1; however, as newer versions of OpenCV are released you can update the corresponding version numbers.

Increasing your SWAP space

Before you start the compile you must increase your SWAP space. Increasing the SWAP will enable you to compile OpenCV with all four cores of the Raspberry Pi (and without the compile hanging due to memory exhausting).

Go ahead and open up your /etc/dphys-swapfile  file:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ sudo nano /etc/dphys-swapfile

…and then edit the CONF_SWAPSIZE  variable:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1234# set size to absolute value, leaving empty (default) then uses computed value#   you most likely don’t want this, unless you have an special disk situation# CONF_SWAPSIZE=100CONF_SWAPSIZE=1024

Notice that I’m increasing the swap from 100MB to 1024MB. This is critical to compiling OpenCV with multiple cores on Raspbian Buster.

Save and exit via ctrl + x , y , enter .

If you do not increase SWAP it’s very likely that your Pi will hang during the compile.

From there, restart the swap service:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

12$ sudo /etc/init.d/dphys-swapfile stop$ sudo /etc/init.d/dphys-swapfile start

Note: Increasing swap size is a great way to burn out your Raspberry Pi microSD card. Flash-based storage has a limited number of writes you can perform until the card is essentially unable to hold the 1’s and 0’s anymore. We’ll only be enabling large swap for a short period of time, so it’s not a big deal. Regardless, be sure to backup your  .img  file after installing OpenCV + Python just in case your card dies unexpectedly early. You can read more about large swap sizes corrupting memory cards on this page.

Compile and install OpenCV 4 on Raspbian Buster

We’re now ready to compile and install the full, optimized OpenCV library on the Raspberry Pi 4.

Ensure you are in the cv  virtual environment using the workon  command:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ workon cv

Then, go ahead and install NumPy (an OpenCV dependency) into the Python virtual environment:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ pip install numpy

And from there configure your build:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

12345678910111213$ cd ~/opencv$ mkdir build$ cd build$ cmake -D CMAKE_BUILD_TYPE=RELEASE \    -D CMAKE_INSTALL_PREFIX=/usr/local \    -D OPENCV_EXTRA_MODULES_PATH=~/opencv_contrib/modules \    -D ENABLE_NEON=ON \    -D ENABLE_VFPV3=ON \    -D BUILD_TESTS=OFF \    -D INSTALL_PYTHON_EXAMPLES=OFF \    -D OPENCV_ENABLE_NONFREE=ON \    -D CMAKE_SHARED_LINKER_FLAGS=-latomic \    -D BUILD_EXAMPLES=OFF ..

There are four CMake flags I’d like to bring to your attention:

  • (1) NEON and (2) VFPv3 optimization flags have been enabled. These lines ensure that you compile the fastest and most optimized OpenCV for the ARM processor on the Raspberry Pi (Lines 7 and 8).
    • Note: The Raspberry Pi Zero W hardware is not compatible with NEON or VFPv3. Be sure to remove Lines 7 and 8 if you are compiling for a Raspberry Pi Zero W.
  • (3) Patented “NonFree” algorithms give you the full install of OpenCV (Line 11).
  • And by drilling into OpenCV’s source, it was determined that we need the (4) -latomic  shared linker flag (Line 12).

I’d like to take a second now to bring awareness to a common pitfall for beginners:

  • In the terminal block above, you change directories into ~/opencv/ .
  • You then create a build/  directory therein and change directories into it.
  • If you try to execute CMake without being in the ~/opencv/build  directory, CMake will fail. Try running pwd  to see which working directory you are in before running cmake .

The cmake  command will take about 3-5 minutes to run as it prepares and configures OpenCV for the compile.

When CMake finishes, be sure to inspect the output of CMake under the Python 3 section:

Figure 8: CMake configures your OpenCV 4 compilation from source on your Raspberry Pi 4 running Buster.

Notice how the Interpreter , Libraries , numpy , and packages  path variables have been properly set. Each of these refers to our cv  virtual environment.

Now go ahead and scroll up to ensure that the “Non-Free algorithms” are set to be installed:

Figure 9: Installing OpenCV 4 with “Non-free algorithms” on Raspbian Buster.

As you can see, “Non-free algorithms” for OpenCV 4 will be compiled + installed.

Now that we’ve prepared for our OpenCV 4 compilation, it is time to launch the compile process using all four cores:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1$ make -j4

Figure 10: We used Make to compile OpenCV 4 on a Raspberry Pi 4 running Raspbian Buster.

Running make  could take anywhere from 1-4 hours depending on your Raspberry Pi hardware (this tutorial is compatible with the Raspberry Pi 3B, 3B+, and 4). The Raspberry Pi 4 is the fastest at the time of this writing.

Assuming OpenCV compiled without error (as in my screenshot above), you can install your optimized version of OpenCV on your Raspberry Pi:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

12$ sudo make install$ sudo ldconfig

Reset your SWAP

Don’t forget to go back to your /etc/dphys-swapfile  file and:

  1. Reset CONF_SWAPSIZE  to 100MB.
  2. Restart the swap service.

Sym-link your OpenCV 4 on the Raspberry Pi

Symbolic links are a way of pointing from one directory to a file or folder elsewhere on your system. For this sub-step, we will sym-link the cv2.so  bindings into your cv  virtual environment.

Let’s proceed to create our sym-link. Be sure to use “tab-completion” for all paths below (rather than copying these commands blindly):Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1234$ cd /usr/local/lib/python3.7/site-packages/cv2/python-3.7$ sudo mv cv2.cpython-37m-arm-linux-gnueabihf.so cv2.so$ cd ~/.virtualenvs/cv/lib/python3.7/site-packages/$ ln -s /usr/local/lib/python3.7/site-packages/cv2/python-3.7/cv2.so cv2.so

Keep in mind that the exact paths may change and you should use “tab-completion”.

Step 5: Testing your OpenCV 4 Raspberry Pi BusterOS install

As a quick sanity check, access the cv  virtual environment, fire up a Python shell, and try to import the OpenCV library:Install OpenCV4 on Raspberry Pi 4 and Raspbian BusterShell

1234567$ cd ~$ workon cv$ python>>> import cv2>>> cv2.__version__’4.1.1′>>>

Congratulations! You’ve just installed an OpenCV 4 on your Raspberry Pi.

If you are looking for some fun projects to work on with OpenCV 4, be sure to checkout my Raspberry Pi archives.

This blog is a courtesy from and all credit goes to them and links are left unaltered for that reason: https://www.pyimagesearch.com/2019/09/16/install-opencv-4-on-raspberry-pi-4-and-raspbian-buster/

Leave a Reply

Your email address will not be published. Required fields are marked *