Skip to main content

Wrapper package for OpenCV python bindings.

Reason this release was yanked:

Release deprecated

Project description

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 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: 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

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.

Manual builds

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

  1. Clone this repository: git clone --recursive https://github.com/skvark/opencv-python.git
  2. Go to the root of the repository
  3. Add custom Cmake flags if needed, for example: export CMAKE_FLAGS="-DSOME_FLAG=ON -DSOME_OTHER_FLAG=OFF"
  4. Run python setup.py bdist_wheel
    • Optionally use the manylinux images as a build hosts if maximum portability is needed (and run auditwheel for the wheel after build)
  5. You'll have the wheel file in the dist folder and you can do with that whatever you wish

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.

Non-headless Linux wheels ship with Qt 4.8.7 licensed under the LGPLv2.1.

Non-headless MacOS 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.

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 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 3.x releases are provided for officially supported versions (not in EOL).

Currently, builds for following Python versions are provided:

  • 3.5
  • 3.6
  • 3.7
  • 3.8

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

opencv_contrib_python-4.3.0.36-cp38-cp38-win_amd64.whl (40.0 MB view details)

Uploaded CPython 3.8Windows x86-64

opencv_contrib_python-4.3.0.36-cp38-cp38-win32.whl (29.8 MB view details)

Uploaded CPython 3.8Windows x86

opencv_contrib_python-4.3.0.36-cp38-cp38-macosx_10_9_x86_64.whl (64.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

opencv_contrib_python-4.3.0.36-cp37-cp37m-win_amd64.whl (40.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_contrib_python-4.3.0.36-cp37-cp37m-win32.whl (29.8 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_contrib_python-4.3.0.36-cp37-cp37m-macosx_10_9_x86_64.whl (64.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

opencv_contrib_python-4.3.0.36-cp36-cp36m-win_amd64.whl (40.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_contrib_python-4.3.0.36-cp36-cp36m-win32.whl (29.8 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_contrib_python-4.3.0.36-cp36-cp36m-macosx_10_9_x86_64.whl (64.0 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

opencv_contrib_python-4.3.0.36-cp35-cp35m-win_amd64.whl (40.0 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_contrib_python-4.3.0.36-cp35-cp35m-win32.whl (29.8 MB view details)

Uploaded CPython 3.5mWindows x86

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 52a9679120c8c07a5eefb5dfd4d0f5955db865e1b44e5d1d703cdcedfe3a22fb
MD5 2bbc224cc7dc7e0d214e00fd88caa479
BLAKE2b-256 5513bb3770397da98e66303665947a0355e306b24116f1310b4d4d612fcce593

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp38-cp38-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.0

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 055b3458931355d390bed61f22fb269ba1e78aae4ef2819f7601ecc99a17a649
MD5 c82d3582a40e80b10eae91211f49133e
BLAKE2b-256 623c764a276f498de2c6100593ef777fc3f0674d86cbd401b746686aeb9c469a

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78c58434f27fbc21d32bd9daff596e404098cffd8bf06c3e198d2f83f4c5cdf2
MD5 6f55135e63b3604e11ff3f89c58d5f8e
BLAKE2b-256 c2f594c1efe1324e8d2955c96ec611df126f0b319c9e605cadcc2361d3ed3f3e

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp38-cp38-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c6b755536e218491c41b1b05a61e09d7a6d1f7e97711a38a1162fe101cfa73b
MD5 2dabb00b3ef33e545d5f77270c547614
BLAKE2b-256 c4a33231d8607574a68bf78721a98cccd90f59890920781afee49fee898f54dd

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 64.0 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.2

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f56007be3493e3aa2057e1e94f666128b6a0f18c8de2c05d706f34f4ca46e25a
MD5 648226ebfc84dc1e09f2649460eeed93
BLAKE2b-256 b3adf7b614bc8c0695e530b75a23d44860e57bb7fdb74d4a600bb84b9358abca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fb481ec90a17172b1dec744e6f343f6ce37d76d3ddc4af71453e04c6b0616618
MD5 d549a7ef2b5b7f5693406b5705187d2e
BLAKE2b-256 8200355af184a0f49fd4b5142b75a37080af999e84550e1ff6ac874d5d4caf5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.5

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 72d03c1a81e1420ceca65ff0a63e119171f1a2afce3bc78487b53f34823991c2
MD5 90af57a307e8cf574bd98da80121a2e3
BLAKE2b-256 0c08b9f16fd8ea2f7a302e9f95f0372d1b725f8aa898d9b5d883470c3c312603

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 319c9d4ee3474e3628f65c3a777bc8476a091671f85c2414bbc2435197d18f55
MD5 18ea32844c9ab7aa84fc7e538e59ab30
BLAKE2b-256 2b3c41808edb511fa70092bf440aeefcc9719d98b86174835e226933bc9958c4

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp37-cp37m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c6874489e5828b22a454dc4882d3ff93e53a9d0055015059799ba98d626e8bf4
MD5 df09a3f72952201dbae88d075ee402ff
BLAKE2b-256 a4f08d0c37b8af50d54221b3e430ed12f5012149fb2ac3fd0aa89356c072ab9f

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 64.0 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.7

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f8382c0011db7724de7093630f42d52c8b9e16a93a608ee95485458c88ca3175
MD5 2d4f6ab21102cc54bcb928ff5799a2c4
BLAKE2b-256 17e96ab9c7793ca009408cb6c4defa51ee804b610c2b1e8d0ef4042ed14ef888

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 7afb7edd0d73855be2e6c20f724eefef1b213857ec5d8fa02d79636a4d1f7fd3
MD5 4fee71f0a7636765076934069cc00d90
BLAKE2b-256 4a6f9aca60d275dc9a93cd83aeff2e86e1473779cc43915dd486fd1fdb6bdef1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 5486d79a543eee653ba7e391a0baf5df884f6282e5872293a599638e8ca8d813
MD5 3ee2a51304de6475dc0dff193f3bb3fb
BLAKE2b-256 dfce496579d23e6428bdbfed3ed4371cb43a2b67e766281472c7703a7941c782

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4421d946f7ce9dc48c22bae49a02b7755b14a081f55c7792a7a60d5d96c0f506
MD5 3b0d901e5101ebc4e620fb8ef3c5bd8b
BLAKE2b-256 fe3e2de8077c5d724a7399a6bdfb0574ce7150ecde6f20b3c13fa31c59790ee8

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp36-cp36m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d1446b711c392962d9f9432abfd6bd1031f336a6dc109a8197a88c168657317
MD5 7496e73975d5b1cbd304d0ddf8751fb5
BLAKE2b-256 1f42b8a03d8ce13ec241dcdcb666ef1ef1847a7f702ff4293554ade31c3493e5

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 64.0 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.8

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 12cbbd14b5f548872ce11035869e13bb6fc3f34adcf853e375b871341b2764ae
MD5 a37b278fc6c7bd19c11c72466b03d129
BLAKE2b-256 591f8e3768deb3f089002cd6846228ed920f131d69ce49f9593adcdc8286a568

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 40.0 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 d20fd73e41ec1aadcb774f0645f83c25fe700db53afe6f8a50ee3fc5f5722151
MD5 4932a439eb65e394b0e7332bb5c90f52
BLAKE2b-256 01a5f847e9fcef0eeb70ede31e8fa122998b64b0bba7f2b1db56f6243ac30a2e

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp35-cp35m-win32.whl.

File metadata

  • Download URL: opencv_contrib_python-4.3.0.36-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 29.8 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.1.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.5.4

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 03b2a42d432b4eec547a76d7f0cfa946c6f456bb38ec88abe94359a99cd2dba3
MD5 e92befe6f6455924a7d9415a271caf46
BLAKE2b-256 ca063938571e2d6476c791b4a7dbf076e9f3359c0ebb681987d14dc1a7e6bdf5

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 626c1204d20eb55933f0aff28663dc03a7c122fef580c8b6cb8c911b1289587c
MD5 de2b02a59107e576820b78f0e11ec213
BLAKE2b-256 f76dbd73d2ac7c9672a24de93ef78fa559e1103506b11c546ad6fa4a2e07b201

See more details on using hashes here.

File details

Details for the file opencv_contrib_python-4.3.0.36-cp35-cp35m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for opencv_contrib_python-4.3.0.36-cp35-cp35m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b349601499b96a348fcd52202e19dd73cb059c0eb62715b2b75a71a5398b07a
MD5 f814fafe7b97c736452d3a20dc9bac60
BLAKE2b-256 a081280141a4a767f98b43259ba2ee9209b45029a4954f0eab063e356930fe32

See more details on using hashes here.

Supported by

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