Skip to main content

Wrapper package for OpenCV python bindings.

Project description

Downloads

OpenCV on Wheels

Pre-built CPU-only OpenCV packages for Python.

Check the manual build section if you wish to compile the bindings from source to enable additional modules such as CUDA.

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. Make sure that your pip version is up-to-date (19.3 is the minimum supported version): pip install --upgrade pip. Check version with pip -V. For example Linux distributions ship usually with very old pip versions which cause a lot of unexpected problems especially with the manylinux format.

  3. Select the correct package for your environment:

    There are four different packages (see options 1, 2, 3 and 4 below) 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)

    • Option 1 - Main modules package: pip install opencv-python
    • Option 2 - Full package (contains both main modules and contrib/extra modules): pip install opencv-contrib-python (check contrib/extra modules listing from OpenCV documentation)

    b. Packages for server (headless) environments (such as Docker, cloud environments etc.), no GUI library dependencies

    These packages are smaller than the two other packages above because they do not contain any GUI functionality (not compiled with Qt / other GUI components). This means that the packages avoid a heavy dependency chain to X11 libraries and you will have for example smaller Docker images as a result. You should always use these packages if you do not use cv2.imshow et al. or you are using some other package (such as PyQt) than OpenCV to create your GUI.

    • Option 3 - Headless main modules package: pip install opencv-python-headless
    • Option 4 - Headless full package (contains both main modules and contrib/extra modules): pip install opencv-contrib-python-headless (check contrib/extra modules listing from OpenCV documentation)
  4. Import the package:

    import cv2

    All packages contain Haar cascade 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")

  5. Read OpenCV documentation

  6. 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 install fails with ModuleNotFoundError: No module named 'skbuild'?

Since opencv-python version 4.3.0.*, manylinux1 wheels were replaced by manylinux2014 wheels. If your pip is too old, it will try to use the new source distribution introduced in 4.3.0.38 to manually build OpenCV because it does not know how to install manylinux2014 wheels. However, source build will also fail because of too old pip because it does not understand build dependencies in pyproject.toml. To use the new manylinux2014 pre-built wheels (or to build from source), your pip version must be >= 19.3. Please upgrade pip with pip install --upgrade pip.

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 you have Windows Server 2012+, media DLLs are probably missing too; please install the Feature called "Media Foundation" in the Server Manager. Beware, some posts advise to install "Windows Server Essentials Media Pack", but this one requires the "Windows Server Essentials Experience" role, and this role will deeply affect your Windows Server configuration (by enforcing active directory integration etc.); so just installing the "Media Foundation" should be a safer choice.

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: Function foo() or method bar() returns wrong result, throws exception or crashes interpreter. What should I do?

A: The repository contains only OpenCV-Python package build scripts, but not OpenCV itself. Python bindings for OpenCV are developed in official OpenCV repository and it's the best place to report issues. Also please check {OpenCV wiki](https://github.com/opencv/opencv/wiki) and the official OpenCV forum before file new bugs.

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

A: Non-free algorithms such as SURF are not included in these packages because they are patented / non-free and therefore cannot be distributed as built binaries. Note that SIFT is included in the builds due to patent expiration since OpenCV versions 4.3.0 and 3.4.10. 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

Windows Build Status (Linux Build status) (Mac OS Build status)

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

CI 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 .github/workflows/build_wheels_linux.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. 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)
    • source distributions are separate entries in the build matrix
  5. Rearrange OpenCV's build result, add our custom files and generate wheel

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

  7. Install the generated wheel

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

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

Steps 1--4 are handled by pip wheel.

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

  • CI_BUILD. Set to 1 to emulate the CI environment build behaviour. Used only in CI builds to force certain build flags on in setup.py. Do not use this unless you know what you are doing.
  • ENABLE_CONTRIB and ENABLE_HEADLESS. Set to 1 to build the contrib and/or headless version
  • ENABLE_JAVA, Set to 1 to enable the Java client build. This is disabled by default.
  • CMAKE_ARGS. Additional arguments for OpenCV's CMake invocation. You can use this to make a custom build.

See the next section for more info about manual builds outside the CI environment.

Manual builds

If some dependency is not enabled in the pre-built wheels, you can also run the build locally to create a custom wheel.

  1. Clone this repository: git clone --recursive https://github.com/opencv/opencv-python.git
  2. cd opencv-python
    • you can use git to checkout some other version of OpenCV in the opencv and opencv_contrib submodules if needed
  3. Add custom Cmake flags if needed, for example: export CMAKE_ARGS="-DSOME_FLAG=ON -DSOME_OTHER_FLAG=OFF" (in Windows you need to set environment variables differently depending on Command Line or PowerShell)
  4. Select the package flavor which you wish to build with ENABLE_CONTRIB and ENABLE_HEADLESS: i.e. export ENABLE_CONTRIB=1 if you wish to build opencv-contrib-python
  5. Run pip wheel . --verbose. NOTE: make sure you have the latest pip version, the pip wheel command replaces the old python setup.py bdist_wheel command which does not support pyproject.toml.
    • this might take anything from 5 minutes to over 2 hours depending on your hardware
  6. You'll have the wheel file in the dist folder and you can do with that whatever you wish
    • Optional: on Linux use some of the manylinux images as a build hosts if maximum portability is needed and run auditwheel for the wheel after build
    • Optional: on macOS use delocate (same as auditwheel but for macOS) for better portability

Manual debug builds

In order to build opencv-python in an unoptimized debug build, you need to side-step the normal process a bit.

  1. Install the packages scikit-build and numpy via pip.
  2. Run the command python setup.py bdist_wheel --build-type=Debug.
  3. Install the generated wheel file in the dist/ folder with pip install dist/wheelname.whl.

If you would like the build produce all compiler commands, then the following combination of flags and environment variables has been tested to work on Linux:

export CMAKE_ARGS='-DCMAKE_VERBOSE_MAKEFILE=ON'
export VERBOSE=1

python3 setup.py bdist_wheel --build-type=Debug

See this issue for more discussion: https://github.com/opencv/opencv-python/issues/424

Source distributions

Since OpenCV version 4.3.0, also source distributions are provided in PyPI. This means that if your system is not compatible with any of the wheels in PyPI, pip will attempt to build OpenCV from sources. If you need a OpenCV version which is not available in PyPI as a source distribution, please follow the manual build guidance above instead of this one.

You can also force pip to build the wheels from the source distribution. Some examples:

  • pip install --no-binary opencv-python opencv-python
  • pip install --no-binary :all: opencv-python

If you need contrib modules or headless version, just change the package name (step 4 in the previous section is not needed). However, any additional CMake flags can be provided via environment variables as described in step 3 of the manual build section. If none are provided, OpenCV's CMake scripts will attempt to find and enable any suitable dependencies. Headless distributions have hard coded CMake flags which disable all possible GUI dependencies.

On slow systems such as Raspberry Pi the full build may take several hours. On a 8-core Ryzen 7 3700X the build takes about 6 minutes.

Licensing

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

OpenCV itself is available under Apache 2 license.

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

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

Non-headless Linux wheels ship with Qt 5 licensed under the LGPLv3.

The packages include also other binaries. Full list of licenses can be found from LICENSE-3RD-PARTY.txt.

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. It saves the version information to version.py file under cv2 in addition to some other flags.

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

The master branch follows OpenCV master branch releases. 3.4 branch follows OpenCV 3.4 bugfix releases.

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 manylinux2014. 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 manylinux2014 images have been extended with some OpenCV dependencies. See Docker folder for more info.

Supported Python versions

Python 3.x compatible pre-built wheels are provided for the officially supported Python versions (not in EOL):

  • 3.6
  • 3.7
  • 3.8
  • 3.9
  • 3.10

Backward compatibility

Starting from 4.2.0 and 3.4.9 builds the macOS Travis build environment was updated to XCode 9.4. The change effectively dropped support for older than 10.13 macOS versions.

Starting from 4.3.0 and 3.4.10 builds the Linux build environment was updated from manylinux1 to manylinux2014. This dropped support for old Linux distributions.

Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

opencv-contrib-python-4.5.4.60.tar.gz (150.7 MB view details)

Uploaded Source

Built Distributions

opencv_contrib_python-4.5.4.60-cp310-cp310-win_amd64.whl (42.0 MB view details)

Uploaded CPython 3.10Windows x86-64

opencv_contrib_python-4.5.4.60-cp310-cp310-win32.whl (31.7 MB view details)

Uploaded CPython 3.10Windows x86

opencv_contrib_python-4.5.4.60-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

opencv_contrib_python-4.5.4.60-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_arm64.whl (36.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

opencv_contrib_python-4.5.4.60-cp39-cp39-win_amd64.whl (42.0 MB view details)

Uploaded CPython 3.9Windows x86-64

opencv_contrib_python-4.5.4.60-cp39-cp39-win32.whl (31.7 MB view details)

Uploaded CPython 3.9Windows x86

opencv_contrib_python-4.5.4.60-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

opencv_contrib_python-4.5.4.60-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_11_0_arm64.whl (36.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_10_15_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

opencv_contrib_python-4.5.4.60-cp38-cp38-win_amd64.whl (42.0 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_contrib_python-4.5.4.60-cp38-cp38-win32.whl (31.7 MB view details)

Uploaded CPython 3.8Windows x86

opencv_contrib_python-4.5.4.60-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

opencv_contrib_python-4.5.4.60-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_11_0_arm64.whl (36.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_10_15_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

opencv_contrib_python-4.5.4.60-cp37-cp37m-win_amd64.whl (42.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-4.5.4.60-cp37-cp37m-win32.whl (31.7 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-4.5.4.60-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

opencv_contrib_python-4.5.4.60-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_11_0_arm64.whl (36.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_10_15_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

opencv_contrib_python-4.5.4.60-cp36-cp36m-win_amd64.whl (42.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-4.5.4.60-cp36-cp36m-win32.whl (31.7 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-4.5.4.60-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (66.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

opencv_contrib_python-4.5.4.60-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (44.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

opencv_contrib_python-4.5.4.60-cp36-cp36m-macosx_10_15_x86_64.whl (54.8 MB view details)

Uploaded CPython 3.6mmacOS 10.15+ x86-64

File details

Details for the file opencv-contrib-python-4.5.4.60.tar.gz.

File metadata

  • Download URL: opencv-contrib-python-4.5.4.60.tar.gz
  • Upload date:
  • Size: 150.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv-contrib-python-4.5.4.60.tar.gz
Algorithm Hash digest
SHA256 3883eab2466d2ec61599a35049f13c5388c2bb475fbf4e67256b09b9c9546adc
MD5 03877d29f34734fd95b2d728583b9916
BLAKE2b-256 aaabc32b79a098fddb12fb033323c75ad47ec16c1b1c2dcf3f103d5d091ccc9b

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 42.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 30822deccc472a41396f0c41f1bb78ba7f9be7a0570c393fb1616c074edcfdc5
MD5 af8124123d45ec22567acea6563daae0
BLAKE2b-256 818ae7a66188c35905a0d7d9eec214d92fd8216abfd023b6b315ffc94592cc42

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp310-cp310-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp310-cp310-win32.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a420f8f655897af2b3aa3698c4316012f23aa9d97b1c1951549d77890b9fb486
MD5 d7dbe15a04f795358bfe5b5179b711af
BLAKE2b-256 e2db4d3f9ddb348372838d56d0f4dea649eb36c3aeebc2ce7ae13a477fd00f16

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e262f552309c6e14d227e2a5ac05883071b34fa4620bc92c5e4d242ba405086
MD5 8f10bd147ac3590f7908723c4d3274e6
BLAKE2b-256 6d8f8e10454af7712b436867762de276e0ae4f934926a0e30cf0c0cba64a03b9

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1383f374c32353e12090f2c4a82a352312e318fd6f4353ef3ecb85a5666f2bf
MD5 66a39dffb965757aa6aecc1301e37c40
BLAKE2b-256 54b99212558f6346cad3aef4dfa95b888bb4b660fde916e60bae3ef758673d4a

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_x86_64.whl
  • Upload date:
  • Size: 54.8 MB
  • Tags: CPython 3.10, macOS 11.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 c91b925136a72459990c76e4996292c7265a4debd8b79f7e2a0f815f506eb2ef
MD5 5a6b63c9f78d27d018c2fc1217467fb7
BLAKE2b-256 0b27eb3b3fdb1f572a3d166a389866205dcf247b26803abd0215d078748a99ea

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d176dce016128240550fd2b3d7d16c4baf8b09718433fca0a897993eb282f5d
MD5 eeda2dd8aaa1bae1715f43df664dd0fb
BLAKE2b-256 d36d2141ed014b4c405d5777704352a3012e3fe348439d5ab8194e33ba02e728

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 42.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9bfe29d62a2001cde2f93a75173917ed40e62e4a5f1ee2af98800143a2ebee66
MD5 a3cfa0825a81761826836eb0507c5883
BLAKE2b-256 c8b9467dc6f85610d50e6f7dd4319b50be2d617b0e0ad29f4fba1934b9fdf87f

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp39-cp39-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp39-cp39-win32.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d954c9af03e383905ec7c68b524817d676a311d5a94cc8b5383ec1bf92027230
MD5 9ca04c0334b556871e44d740b12fee5f
BLAKE2b-256 1e6bcdc4db9564404e8fb85ce1a324718ae20b7c00089b17b9f806361832f487

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec2ae7cefb5715da1ef6a72912d270cec9c973e87d5213f3792a17cd369d416f
MD5 f48c02eabf4f7587df4e77f5b84d813e
BLAKE2b-256 b7269beacb57318015aad06fe31f3c9e5b0be42977b92a3c1c4316ca873ba692

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9fea4651419f69947e125861c87be1bac980dc0f6537b0c1573fe9ada82c444
MD5 3fd2f55cfe224e65e8d6630129390d4f
BLAKE2b-256 b70de001cba223d6333c74b93d0a4d0d34208a5540751dba6d4c0985dcd888a7

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 266bbb889b7d802cf9bd19f9e7e7781d8c4eefc2dd4239bc7457c9b941c24d71
MD5 358a69fcd386a2ce979a4d8879f77103
BLAKE2b-256 1b607018d4db858b28512cd45db8fe35484c5ec53c0f4eb65c7c3bac5ea463a1

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 54.8 MB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1334c943aa6778f2a07f583d4cd9349bdc4fa5d37574aa7392b4bbb9de7b1fb5
MD5 56161c76a2877594da963a630e319346
BLAKE2b-256 c5daae8b8bba27a7b93b1af2a947a1eb04561ac2324b9bead6bbd7349db297a0

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 42.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8cec83d99a64991c81cdd3e96fbe5ec7e31dc83504ca7db64419c267f55fde61
MD5 3078d907569fd55ca6b5ffff20f267f7
BLAKE2b-256 0ed0b66213529e1071a2a0ee1ecd609592c0cc2a184423f19345b5c168c10f6b

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp38-cp38-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp38-cp38-win32.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ca45f1d5c55aab5caecc303d70abc1b21aff8c4db26a44f479b637f8b2c0686f
MD5 6a958b2124b7418e213f8dea9e6dac12
BLAKE2b-256 318f4dbc188ceb97a34fb726700fb6d8cc343a08fe82cff1f2bc89e93576f20c

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1af5e0bd242b13ceaf1d0701c93cb049e4a4d1aacc0b27f2c8994488aa4a4fee
MD5 ee3b5ce28aec3383849fae87d767536a
BLAKE2b-256 a0a75c976c647687474a201b7663cf9c2ac7f38d040917b8bf21215cc6205e30

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 591aafc520012d39ed02f7539b6867a5f675d66096e4975caeddd54eb8c7eb8d
MD5 a71620d3d5b6b3d05afada705c38845e
BLAKE2b-256 687271f5530475fec63f50e498ef6253a2b205b9ffe166c3a4f7430f8f8b1e57

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 192a6deae66dfa8c9ddefed648b3e5426064b4505e4a0d3bee84bfdf30c8721d
MD5 6ca138e692b76577cafbdf011c82d4db
BLAKE2b-256 c156aaf1cbdedc3f6c40071bfdfd67e3cc4bfe4694abde58741588efe6feadf7

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 54.8 MB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bcc912e9b78fe3f971f1e3f41104836322aa329c5f63197f4cf9942d30b69f6f
MD5 8ff9a7f3e3608da5eeb94aad58b7137a
BLAKE2b-256 d29d62fcdaed16b59d478624f55c70a78af669c0fd9017beb68259de596f449d

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 42.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 82e528bef86eab4ab349ff9e1271044b2b5c193b55d996b377473e73e3cbf2bf
MD5 77d3687d2cceb92f7accd2bacf10c475
BLAKE2b-256 431d7144513143476dea47a02a09ca58507d397d24f446766cbf2fd1ae444eaf

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp37-cp37m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 dc36943cdbb102a4e1a8390b27eb57ae8325038c24ce7cef3426e999406ad7fa
MD5 94da3913a072e912f2a7e5c6651071c1
BLAKE2b-256 8e856f030931d86d185c79ee1552643dfa09e0e7143e099f06e906391cfce759

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8058c16abe7bea9931b8f882b1f31d0e3401365c1ad6e853be24127a1d1b8e8
MD5 adccdde9af276c86d9c17f90d54c689b
BLAKE2b-256 538306f068d2df2abc18afdede94c9d887c4e4fe808ad0ad126c3b747af9819e

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 debc5058fea20b4981b752218236424e0d9844a193c40ac98c3a74c03e82d277
MD5 011967e6586ad398304732dad0c04855
BLAKE2b-256 d2a1a4bfdb221ed8923fc6dfdf27756c0d117437af8267b7da6d87fbddc7b014

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 36.1 MB
  • Tags: CPython 3.7m, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28caf69b6db4da76f5013428a5a2791b276b44e79ab9f70ac1a17fd0a208533b
MD5 7f14f582c31e784d09ab57aee03e6239
BLAKE2b-256 c52bad236e2f65996741af909127b7425832ef14fc747b11a3119a3e2c81c4b9

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 54.8 MB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 04f26541355b3050ab1112b31244bfbccc4ab7733505365708c38a3e8d50dfb4
MD5 4ef0c38c7c2e4965a130268db2a5f6e9
BLAKE2b-256 00a456d744f06312824e4d45f924da807095686a932073041530b0894f58d4fa

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 42.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9febb96a2dad037b54f4100f0bda190229c5cbc3a4c4e01b6e15156132f82b3b
MD5 6f6b3ec6f55c1653b4d1965c0226c565
BLAKE2b-256 6adb8a2a794062a4a26677c378ff9a9f1b3d1321ae5f6e9123e71d1baa8303e6

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp36-cp36m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 31.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 04da9108ec56065874c1725919b60daa1b4e447bd96ab646271e609fc81a0a66
MD5 782376d5c24570150567c6929ac985ff
BLAKE2b-256 4bb7de8dc29ce30cf51f0a8c71d5df3245cadfa246df35173e25a8d4764f3edb

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 918ee9b93d2edd366ce06a47ba690e80167a9aff1697a54225eaaf8b5f6218ba
MD5 99e08de1e23b508e21a64e9d12e62442
BLAKE2b-256 dc5ab9422c97f856bf2f8baa81ba9a44b5d133d516d36dcc079c60aa8e084e06

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab8ed9b9350dc3c978aba535bae01e1b5556a747cb694b261160bea176184473
MD5 137620beaefb6323c4cd214e5ad06a37
BLAKE2b-256 24ad9d7c3e6197688b614611efcc66ef72b6217d34976e57bafadd2bd2bd4c0c

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.5.4.60-cp36-cp36m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.5.4.60-cp36-cp36m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 54.8 MB
  • Tags: CPython 3.6m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for opencv_contrib_python-4.5.4.60-cp36-cp36m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7b590143d2b66b2319b412213c0d199c67e8e271860e24d81a812f7c124b8cf5
MD5 4b0232b8bb3e0a6b26d4a7cad9644aa5
BLAKE2b-256 23a1c8ca374d3b0cc4ecee7fd5bd36d41e2c694053adf990950353d8b6dc4d1b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page