Unofficial OpenCV packages for Python.
This repository generates packages which contain pre-compiled OpenCV binary with Python bindings. This enables super fast (usually < 10 seconds) OpenCV installation for Python.
If you need only OpenCV Python bindings, no separate OpenCV installation is required.
IMPORTANT NOTE
MacOS and Linux wheels have some limitations:
- video related functionality is not supported (not compiled with FFmpeg)
- for example
cv.imshow()
will not work (not compiled with GTK+ 2.x or Carbon support)
- If you have previous/other version of OpenCV installed (e.g. cv2 module in the root of Python's site-packages), remove it before installation to avoid conflicts.
- To further avoid conflicts and to make development easier, Python's virtual environments are highly recommended for development purposes.
- Install this package:
pip install opencv-python
- Import the package:
import cv2
- Read OpenCV documentation
The aim of this repository is to provide means to package each new OpenCV release for the most used Python versions and platforms.
At the same time it allows anyone to build a custom version of OpenCV for any Python version: just fork this repo and modify the build files and scripts to fit your needs.
The project is structured like a normal Python package with a standard
setup.py
file. The build process is as follows (see for example
appveyor.yml
file):
- Checkout repository and submodules
- OpenCV is included as submodule and the version is updated manually by maintainers when a new OpenCV release has been made
- Find OpenCV version from the sources
- Upgrade pip and install numpy for each Python version
- Build OpenCV
- tests are disabled, otherwise build time increases too much
- Copy each
.pyd/.so
file to cv2 folder of this project and generate wheel - Install the generated wheels for each Python version
- Test that the Python versions can import them
- Use twine to upload all wheels to PyPI
Currently the find_version.py
file parses OpenCV version information
from the OpenCV sources. OpenCV depends on numpy, so setup.py
checks
the numpy version also with the help of pip.
The cv2.pyd
file for example on Windows is normally copied to site-packages.
To avoid polluting the root folder the __init__.py
file in cv2 folder
handles the import logic correctly by importing the actual .pyd
module
and replacing the imported cv2 package in sys.modudes
with the
cv2 module to retain backward compatibility.
Opencv-python package (scripts in this repository) is available under MIT license.
OpenCV itself is available under 3-clause BSD License (LICENSE-3RD-PARTY.txt).
Windows wheels ship with FFmpeg licensed under the LGPLv2.1.
Currently the find_version.py
script searches for the version
information from OpenCV sources and appends also a revision number
specific to this repository to the version string.
A release is made and uploaded to PyPI when a new tag is pushed to master branch. These tags differentiate packages (this repo might have modifications but OpenCV version stays same) and should be incremented sequentially. In practice, release version numbers look like this:
cv_major.cv_minor.cv_revision.package_revision
e.g. 3.1.0.0
Every commit to the master branch of this repo will be built. Possible build artifacts use local version identifiers:
cv_major.cv_minor.cv_revision+git_hash_of_this_repo
e.g.
3.1.0+14a8d39
These artifacts can't be and will not be uploaded to PyPI.
To build opencv_contrib
:
cd build cmake -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DOPENCV_EXTRA_MODULES_PATH=../opencv_contrib/modules ../opencv
Linux wheels are built using manylinux. These wheels should work out of the box for most of the distros (which use GNU C standard library) out there since they are built against an old version of glibc.
Python 2.7 is the only supported version in 2.x series.
Python 3.x releases follow Numpy releases, for example
Python 3.3 is no longer supported by Numpy so the support
for it has been dropped in opencv-python
too.
Currently, builds for following Python versions are provided:
- 2.7
- 3.4
- 3.5
- 3.6