Skip to main content

Downloads

OpenCV on Wheels

Unofficial pre-built OpenCV packages for Python.

Installation and Usage

  1. If you have previous/other manually installed (= not installed via pip) version of OpenCV installed (e.g. cv2 module in the root of Python's site-packages), remove it before installation to avoid conflicts.

  2. Select the correct package for your environment:

    There are four different packages and you should select only one of them. Do not install multiple different packages in the same environment. There is no plugin architecture: all the packages use the same namespace (cv2). If you installed multiple different packages in the same environment, uninstall them all with pip uninstall and reinstall only one package.

    a. Packages for standard desktop environments (Windows, macOS, almost any GNU/Linux distribution)

    • run pip install opencv-python if you need only main modules
    • run pip install opencv-contrib-python if you need both main and contrib modules (check extra modules listing from OpenCV documentation)

    b. Packages for server (headless) environments

    These packages do not contain any GUI functionality. They are smaller and suitable for more restricted environments.

    • run pip install opencv-python-headless if you need only main modules
    • run pip install opencv-contrib-python-headless if you need both main and contrib modules (check extra modules listing from OpenCV documentation)
  3. Import the package:

    import cv2

    All packages contain haarcascade files. cv2.data.haarcascades can be used as a shortcut to the data folder. For example:

    cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_frontalface_default.xml")

  4. Read OpenCV documentation

  5. Before opening a new issue, read the FAQ below and have a look at the other issues which are already open.

Frequently Asked Questions

Q: Do I need to install also OpenCV separately?

A: No, the packages are special wheel binary packages and they already contain statically built OpenCV binaries.

Q: Pip fails with Could not find a version that satisfies the requirement ...?

A: Most likely the issue is related to too old pip and can be fixed by running pip install --upgrade pip. Note that the wheel (especially manylinux) format does not currently support properly ARM architecture so there are no packages for ARM based platforms in PyPI. However, opencv-python packages for Raspberry Pi can be found from https://www.piwheels.org/.

Q: Import fails on Windows: ImportError: DLL load failed: The specified module could not be found.?

A: If the import fails on Windows, make sure you have Visual C++ redistributable 2015 installed. If you are using older Windows version than Windows 10 and latest system updates are not installed, Universal C Runtime might be also required.

Windows N and KN editions do not include Media Feature Pack which is required by OpenCV. If you are using Windows N or KN edition, please install also Windows Media Feature Pack.

If the above does not help, check if you are using Anaconda. Old Anaconda versions have a bug which causes the error, see this issue for a manual fix.

If you still encounter the error after you have checked all the previous solutions, download Dependencies and open the cv2.pyd (located usually at C:\Users\username\AppData\Local\Programs\Python\PythonXX\Lib\site-packages\cv2) file with it to debug missing DLL issues.

Q: I have some other import errors?

A: Make sure you have removed old manual installations of OpenCV Python bindings (cv2.so or cv2.pyd in site-packages).

Q: Why the packages do not include non-free algorithms?

A: Non-free algorithms such as SIFT and SURF are not included in these packages because they are patented and therefore cannot be distributed as built binaries. See this issue for more info: https://github.com/skvark/opencv-python/issues/126

Q: Why the package and import are different (opencv-python vs. cv2)?

A: It's easier for users to understand opencv-python than cv2 and it makes it easier to find the package with search engines. cv2 (old interface in old OpenCV versions was named as cv) is the name that OpenCV developers chose when they created the binding generators. This is kept as the import name to be consistent with different kind of tutorials around the internet. Changing the import name or behaviour would be also confusing to experienced users who are accustomed to the import cv2.

Documentation for opencv-python

AppVeyor CI test status (Windows) Travis CI test status (Linux and OS X)

The aim of this repository is to provide means to package each new OpenCV release for the most used Python versions and platforms.

Build process

The project is structured like a normal Python package with a standard setup.py file. The build process for a single entry in the build matrices is as follows (see for example appveyor.yml file):

  1. In Linux and MacOS build: get OpenCV's optional C dependencies that we compile against

  2. 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
    • Contrib modules are also included as a submodule
  3. Find OpenCV version from the sources

  4. Install Python dependencies

    • setup.py installs the dependencies itself, so you need to run it in an environment where you have the rights to install modules with Pip for the running Python
  5. Build OpenCV

    • tests are disabled, otherwise build time increases too much
    • there are 4 build matrix entries for each build combination: with and without contrib modules, with and without GUI (headless)
    • Linux builds run in manylinux Docker containers (CentOS 5)
  6. Rearrange OpenCV's build result, add our custom files and generate wheel

  7. Linux and macOS wheels are transformed with auditwheel and delocate, correspondingly

  8. Install the generated wheel

  9. Test that Python can import the library and run some sanity checks

  10. Use twine to upload the generated wheel to PyPI (only in release builds)

Steps 1--5 are handled by setup.py bdist_wheel.

The build can be customized with environment variables. In addition to any variables that OpenCV's build accepts, we recognize:

  • ENABLE_CONTRIB and ENABLE_HEADLESS. Set to 1 to build the contrib and/or headless version
  • CMAKE_ARGS. Additional arguments for OpenCV's CMake invocation. You can use this to make a custom build.

Licensing

Opencv-python package (scripts in this repository) is available under MIT license.

OpenCV itself is available under 3-clause BSD License.

Third party package licenses are at LICENSE-3RD-PARTY.txt.

All wheels ship with FFmpeg licensed under the LGPLv2.1.

Linux and MacOS wheels ship with Qt 4.8.7 licensed under the LGPLv2.1.

Versioning

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.

Releases

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

Development builds

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.

Manylinux wheels

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.

The default manylinux images have been extended with some OpenCV dependencies. See Docker folder for more info.

Supported Python versions

Python 2.7 is the only supported version in 2.x series. Python 2.7 support will be dropped in the end of 2019.

Python 3.x releases follow Numpy releases. For example Python 3.3 is no longer supported by Numpy so 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
  • 3.7

Release files for opencv-contrib-python 4.1.1.26

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for opencv-contrib-python 4.1.1.26
File
opencv_contrib_python-4.1.1.26-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
opencv_contrib_python-4.1.1.26-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_contrib_python-4.1.1.26-cp37-cp37m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ Intel (x86-64, i386), macOS 10.9+ x86-64, macOS 10.8+ x86-64, macOS 10.10+ Intel (x86-64, i386), macOS 10.10+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
opencv_contrib_python-4.1.1.26-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_contrib_python-4.1.1.26-cp36-cp36m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.10+ x86-64, macOS 10.9+ x86-64, macOS 10.9+ Intel (x86-64, i386), macOS 10.8+ x86-64, macOS 10.10+ Intel (x86-64, i386) Details
opencv_contrib_python-4.1.1.26-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
opencv_contrib_python-4.1.1.26-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_contrib_python-4.1.1.26-cp35-cp35m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.9+ Intel (x86-64, i386), macOS 10.10+ Intel (x86-64, i386), macOS 10.10+ x86-64, macOS 10.9+ x86-64, macOS 10.8+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
opencv_contrib_python-4.1.1.26-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_contrib_python-4.1.1.26-cp34-cp34m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl CPython 3.4 CPython 3.4 pymalloc macOS 10.9+ Intel (x86-64, i386), macOS 10.8+ x86-64, macOS 10.10+ Intel (x86-64, i386), macOS 10.10+ x86-64, macOS 10.9+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
opencv_contrib_python-4.1.1.26-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
opencv_contrib_python-4.1.1.26-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
opencv_contrib_python-4.1.1.26-cp27-cp27m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.8+ x86-64, macOS 10.9+ Intel (x86-64, i386), macOS 10.10+ Intel (x86-64, i386), macOS 10.10+ x86-64, macOS 10.9+ x86-64 Details

Total release size: 1.1 GB

Release files / opencv_contrib_python-4.1.1.26-cp37-cp37m-win_amd64.whl

Download URL opencv_contrib_python-4.1.1.26-cp37-cp37m-win_amd64.whl
Size 45.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
4245cc246c4007d6cf3ac24e05dc6b9b24e1204eeb0a22089a90d4162e8b8d0c
BLAKE2b-256 checksum
How to use checksums
00a3dfdbd5db6ba7f5b5a34d969c7508866c48826c61eb5e2c913d27f8784ff4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

Release files / opencv_contrib_python-4.1.1.26-cp37-cp37m-win32.whl

Download URL opencv_contrib_python-4.1.1.26-cp37-cp37m-win32.whl
Size 32.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b4f5635703726c98d95c50d5a4912ef38f571a8ff99ec4ddaa2174529101cd53
BLAKE2b-256 checksum
How to use checksums
9e91373186b02947bbc94a630775a005150602dfe33e4d0e77247f9ab4072109
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4

Release files / opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_x86_64.whl
Size 34.7 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8bb6bb04028af3b6df763a6289ac41906960a4c47415db0856048c02563e3d0e
BLAKE2b-256 checksum
How to use checksums
b539652dd2060ed9f60cf828f7d3ceff99e6aa469ce689ffa74aaf394b73fdd7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_i686.whl

Download URL opencv_contrib_python-4.1.1.26-cp37-cp37m-manylinux1_i686.whl
Size 35.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
7d545fc5fc8b55bd0508a736f42490154784f95f43015bd94aa388fc034cd67f
BLAKE2b-256 checksum
How to use checksums
010bfae80f99a39432d9ff8cbbf2d88ade54dff9dcc0946f94be8ec12c24fe1d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp37-cp37m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp37-cp37m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Size 61.5 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.10+ Intel (x86-64, i386) macOS 10.10+ x86-64 macOS 10.8+ x86-64 macOS 10.9+ Intel (x86-64, i386) macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e60ea4db1fe54103407a62d4c32727357bf2717d775b7299bcc314a7686d3c11
BLAKE2b-256 checksum
How to use checksums
00ee94d11d1debd8b3fe46479e7b9479006432de14576714f9b5c4d2a72a14c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.0

Release files / opencv_contrib_python-4.1.1.26-cp36-cp36m-win_amd64.whl

Download URL opencv_contrib_python-4.1.1.26-cp36-cp36m-win_amd64.whl
Size 45.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
0f844f2977efe5a7e350d5cb89e9d39fd6040e70c00161242b8847ae2a9ecb9f
BLAKE2b-256 checksum
How to use checksums
ba0d40121ed697f6105b9ffafc0e455e955ba8cbff2dda239cf188d24525be5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8

Release files / opencv_contrib_python-4.1.1.26-cp36-cp36m-win32.whl

Download URL opencv_contrib_python-4.1.1.26-cp36-cp36m-win32.whl
Size 32.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
3a2af59e65182192897c59b789003088647a8f45f5e1f7c31a2f650d810b8ae7
BLAKE2b-256 checksum
How to use checksums
eae583bee6f72144295322e92f4af49e0d2f44a752e5870bfe83c8182db489ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8

Release files / opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_x86_64.whl
Size 34.7 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a1f6499447c69ccfdb49dd084c4918ebd8c57dda06ae298dbe8b998fd45288c4
BLAKE2b-256 checksum
How to use checksums
339b1f9ef069206002d0bbca80598193904ce1ae2a990e7465bc351b1264c7d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_i686.whl

Download URL opencv_contrib_python-4.1.1.26-cp36-cp36m-manylinux1_i686.whl
Size 35.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
10598030408098693ffeba561d5508f406cdb105a788f0a7e0a77b027039037f
BLAKE2b-256 checksum
How to use checksums
c49c2e81135c49f2f3d0de260356c61d6a542c0c105421c9a0ce3d9d79207f39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp36-cp36m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp36-cp36m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Size 61.5 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.10+ Intel (x86-64, i386) macOS 10.10+ x86-64 macOS 10.8+ x86-64 macOS 10.9+ Intel (x86-64, i386) macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
91a2f973ab95e0a9b75e7011c5eabdf9f4da1e5d1be4d31f14bf3544ed51dfde
BLAKE2b-256 checksum
How to use checksums
643664f7edd947fcd5feb6bc1df0f57b5132291ea7ed12864197e3df34f4431a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.6

Release files / opencv_contrib_python-4.1.1.26-cp35-cp35m-win_amd64.whl

Download URL opencv_contrib_python-4.1.1.26-cp35-cp35m-win_amd64.whl
Size 45.3 MB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
9ee562990e68e91c3e9bbb4a74ca44921618292c68e8a838ebd4ed020d5b0333
BLAKE2b-256 checksum
How to use checksums
f3be8f9d9eaf4e5b77176e71961c4ec0673f7a96a7c208d7f6acce8d42b41ef6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.4

Release files / opencv_contrib_python-4.1.1.26-cp35-cp35m-win32.whl

Download URL opencv_contrib_python-4.1.1.26-cp35-cp35m-win32.whl
Size 32.4 MB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
4e8fac588e667a89dbb8c7fe267a268272b9805623b3d9886c8a63480a3a8bfb
BLAKE2b-256 checksum
How to use checksums
b68948709e3a3326a50d09922d77e53860dc6f1ba4a0525252602bf812129736
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.4

Release files / opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_x86_64.whl
Size 34.7 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
55ee429bebdadcbca7fa7902869a397db16d401545d31c1776fc56011a196ce3
BLAKE2b-256 checksum
How to use checksums
825ef64260deb089a7d215b1f8b6674212b06419af4ee505cf930e8c4ab9e98f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_i686.whl

Download URL opencv_contrib_python-4.1.1.26-cp35-cp35m-manylinux1_i686.whl
Size 35.4 MB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
83596827c2f11405910a5391dcb15bbcaae3aa6f21403d76a80cdaa7a153d9d6
BLAKE2b-256 checksum
How to use checksums
559a99652baad21b1c92bbb9ef79f7f1d0a4007222f57ab2469e47da66a33b64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp35-cp35m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp35-cp35m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Size 61.5 MB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.10+ Intel (x86-64, i386) macOS 10.10+ x86-64 macOS 10.8+ x86-64 macOS 10.9+ Intel (x86-64, i386) macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
aa4cacbbc60c6a0302447a9553bb672aacf54e0eb5b6ec3cb0192a09669277f7
BLAKE2b-256 checksum
How to use checksums
30d8c004d5f424acafa584c338c8add7eb783d2455743e3e776d2c213f014c89
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.4

Release files / opencv_contrib_python-4.1.1.26-cp34-cp34m-win_amd64.whl

Download URL opencv_contrib_python-4.1.1.26-cp34-cp34m-win_amd64.whl
Size 45.3 MB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
0c190e6abbbe47b9fb4bccdedb3f2e3d6cb97294072f3639f42a7cb9f2694895
BLAKE2b-256 checksum
How to use checksums
8eb14dc23c77c974d1d32536a22de9e60e693d44dcf09636826bb15b02013aa6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.4.4

Release files / opencv_contrib_python-4.1.1.26-cp34-cp34m-win32.whl

Download URL opencv_contrib_python-4.1.1.26-cp34-cp34m-win32.whl
Size 32.4 MB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
72b5259d55b17f04f3dfeca1b18f8d68b8fe23a511642939880492f2ecbf479e
BLAKE2b-256 checksum
How to use checksums
8f9e29f11035215bb7dda4887a4c04d275157baaf61e042bf58cef994b407ffa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.4.4

Release files / opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_x86_64.whl
Size 34.7 MB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cbd81312e725679f41c87f3a4e37358af977fec822b015d029cc1c9ef11091a3
BLAKE2b-256 checksum
How to use checksums
9c4dbf3958084be0712f66f53b4aa103e7abb8a79411d70dc9fe5d403ec0f6f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_i686.whl

Download URL opencv_contrib_python-4.1.1.26-cp34-cp34m-manylinux1_i686.whl
Size 35.4 MB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
345c3053292f356e9b8a1b857bf4ac927b603b0ad2e026c46d549fdaba7e0943
BLAKE2b-256 checksum
How to use checksums
3416f8d8523cf0846d51200809b4b4c460e25b6cbfbf06e93acd4dbb8847dcfa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp34-cp34m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp34-cp34m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Size 61.5 MB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.10+ Intel (x86-64, i386) macOS 10.10+ x86-64 macOS 10.8+ x86-64 macOS 10.9+ Intel (x86-64, i386) macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
bba43cf21456ca45eaa89b1b463044234fe035ddb92e0bb00089fa4c881cc7d5
BLAKE2b-256 checksum
How to use checksums
c03eb0c2c3835b110a1e36b3f88c2d526bdafead5de7ccfe4bfe1d2546297ec8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.4.4

Release files / opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_x86_64.whl
Size 34.7 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ed3d62b4f4b023dcdc5df486416e6403090c8009673216ee41d2a279cde96c21
BLAKE2b-256 checksum
How to use checksums
dd576174715277132b99c3ff86b29eaeb199ef928a9e4c360df8f61efdc39a07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_i686.whl

Download URL opencv_contrib_python-4.1.1.26-cp27-cp27mu-manylinux1_i686.whl
Size 35.4 MB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
560b6e4a961a83f742ca45a7d769771e03dbd7661995e2e83382295c826f1034
BLAKE2b-256 checksum
How to use checksums
15255ab0490b7c7397cbb401820d8c5bf95d8637284dc8da0ee04fec449e4d55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp27-cp27m-win_amd64.whl

Download URL opencv_contrib_python-4.1.1.26-cp27-cp27m-win_amd64.whl
Size 45.4 MB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
767c7193520c028fea33ca2b9aa72b6ccd5e67cb2a6f6fef9e910bb65321d835
BLAKE2b-256 checksum
How to use checksums
b4794db0ae3fe1854750d603fb2cc338e1156f18489b88d9268ac21ed7f5c08e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.16

Release files / opencv_contrib_python-4.1.1.26-cp27-cp27m-win32.whl

Download URL opencv_contrib_python-4.1.1.26-cp27-cp27m-win32.whl
Size 32.4 MB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
3e420739d3ee8b1273b9258f1ad58f515c5905d458542fdf82134f3b671418ed
BLAKE2b-256 checksum
How to use checksums
9414d7280390f937ac412906436f2e5acc9a777f5fc383e5bd7bb1a29a9fa8a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.16

Release files / opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_x86_64.whl
Size 34.7 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
412a70352faf35374b15af974079e65321af530a9d7a11919d5642345ccd9ea7
BLAKE2b-256 checksum
How to use checksums
0d3a0255e95cba4786fe2fc0e14bbaf19411944c7b28c48ffb004ad3137da8c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_i686.whl

Download URL opencv_contrib_python-4.1.1.26-cp27-cp27m-manylinux1_i686.whl
Size 35.4 MB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
688c48909b43347afd5d7e965e78af3c5a5d5d47056da80600348884dde79d2e
BLAKE2b-256 checksum
How to use checksums
8dfe70685d1a9e03ad56abb9f956e18f6146e52358807f072fa0fa1d9dd9ec87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.12

Release files / opencv_contrib_python-4.1.1.26-cp27-cp27m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl

Download URL opencv_contrib_python-4.1.1.26-cp27-cp27m-macosx_10_8_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Size 61.5 MB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.10+ Intel (x86-64, i386) macOS 10.10+ x86-64 macOS 10.8+ x86-64 macOS 10.9+ Intel (x86-64, i386) macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
abe05935ccaa16670100656d9313ebe965c554b5ad719b0f139758b9fd9eec9a
BLAKE2b-256 checksum
How to use checksums
dcb921c7def7bcc01bd3abc69463bad5242a17f625864d44620c13937c020918
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.15

Release history Release notifications | RSS feed

This release

4.1.1.26 This release

27 release files

4.0.1.23

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page