Skip to main content

Wrapper package for OpenCV python bindings.

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 enviroment. 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.

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.

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 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. 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
  2. Find OpenCV version from the sources

  3. Install dependencies (numpy)

  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)
  5. Copy each .pyd/.so file to cv2 folder of this project and generate wheel

    • Linux and macOS wheels are checked with auditwheel and delocate
  6. Install the generated wheel

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

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

The cv2.pyd/.so file is normally copied to site-packages. To avoid polluting the root folder this package wraps the statically built binary into cv2 package and __init__.py file in the package handles the import logic correctly.

Since all packages use the same cv2 namespace explained above, uninstall the other package before switching for example from opencv-python to opencv-contrib-python.

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 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 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_python_headless-3.4.5.20-cp37-cp37m-win_amd64.whl (38.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

opencv_python_headless-3.4.5.20-cp37-cp37m-win32.whl (25.9 MB view details)

Uploaded CPython 3.7mWindows x86

opencv_python_headless-3.4.5.20-cp37-cp37m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (42.5 MB view details)

Uploaded CPython 3.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_python_headless-3.4.5.20-cp36-cp36m-win_amd64.whl (38.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

opencv_python_headless-3.4.5.20-cp36-cp36m-win32.whl (25.9 MB view details)

Uploaded CPython 3.6mWindows x86

opencv_python_headless-3.4.5.20-cp36-cp36m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (42.5 MB view details)

Uploaded CPython 3.6mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_python_headless-3.4.5.20-cp35-cp35m-win_amd64.whl (38.3 MB view details)

Uploaded CPython 3.5mWindows x86-64

opencv_python_headless-3.4.5.20-cp35-cp35m-win32.whl (25.9 MB view details)

Uploaded CPython 3.5mWindows x86

opencv_python_headless-3.4.5.20-cp35-cp35m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (42.5 MB view details)

Uploaded CPython 3.5mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_python_headless-3.4.5.20-cp34-cp34m-win_amd64.whl (38.3 MB view details)

Uploaded CPython 3.4mWindows x86-64

opencv_python_headless-3.4.5.20-cp34-cp34m-win32.whl (25.9 MB view details)

Uploaded CPython 3.4mWindows x86

opencv_python_headless-3.4.5.20-cp34-cp34m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (42.5 MB view details)

Uploaded CPython 3.4mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

opencv_python_headless-3.4.5.20-cp27-cp27m-win_amd64.whl (38.3 MB view details)

Uploaded CPython 2.7mWindows x86-64

opencv_python_headless-3.4.5.20-cp27-cp27m-win32.whl (25.9 MB view details)

Uploaded CPython 2.7mWindows x86

opencv_python_headless-3.4.5.20-cp27-cp27m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (42.5 MB view details)

Uploaded CPython 2.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ x86-64macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

File details

Details for the file opencv_python_headless-3.4.5.20-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 38.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 957e10c10f0d2469c2483665eb6e865d16d707166900cc251279dda3779b00b0
MD5 9c168e50be009200ba396523240d67b6
BLAKE2b-256 d2cdae5ee03f3b25b5caddddf4982f002c0bb9457ebc6f87846c2f63f7870fe5

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp37-cp37m-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a2faa3b0c5f339f29a4fa6af5a7f665e8be56de73dcd5227456ca7ec3aa9cfc4
MD5 ddf5e1eaa94183434c7fe800a0d32ef5
BLAKE2b-256 f119d426d41b15f492facaef972c84cc992507688743b9b39143e0ccf7111a1c

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0ac875cfb86b56d23edb534a1652efe0638a2ebb39cc6347eee74ec16efa7172
MD5 372ec6e43ce94a938c344774f599e83e
BLAKE2b-256 05ec7203a9b10f2598f791c9e62fd17923356503c2207dcdb80879b3be69fcb3

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp37-cp37m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 074779b9e5badd89bc7f1d6ce68bfe8fd65a91fdf8cf45da8295932a04086710
MD5 d1cb86159f14f4226d331bfb37dac1aa
BLAKE2b-256 7944d82cc7ffd9492792bc838005be3a09210fd7c67469cbec869d117a9e4012

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp37-cp37m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp37-cp37m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 3ec331d5ef0e381a19e29cf132f1722ec93422951a78de9ef7b213566dbb2ff2
MD5 d621426c56510d1a02d2893edd9e5ee0
BLAKE2b-256 23759f5fc1a4b0752085c0aa280c3204650902f3bd4e458eb2b71e0a604a934d

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 38.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e7d54fc0f729e902ae0ae0c980d99f5987b823464b39af6ed146885c3869b3b1
MD5 4451ee45841a198e31771838d68b0a06
BLAKE2b-256 db533aa2648da6313ddff4f911d602e905ad112eecc4a97bae039b53cf6511c7

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp36-cp36m-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dea0917dd1a0d945046c99e116e5bce34395c1053799e92274a958ec445a8b6c
MD5 11d6779d4585ac11463a45ffdb54eef3
BLAKE2b-256 041b46690a3a68eb59ceca52cee0ede58d369d7cae2a1309e585586879b3de4c

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e133b9434ed988d2a564aec1c7f0ecd2cbc5b02cfeae5cf7176d3e823ea4c60b
MD5 bfd125db82ef63fb34eae48ddecf4522
BLAKE2b-256 9270b9d40ab46d5dfda5aff2803901851a60f21c5c2823debd59e2479ec55dfb

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp36-cp36m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 006384e784f531fbb04344452d8a54b1722bc8dbc4bd4f67bc6bc75ff4a49266
MD5 76b7c463412790a022ca532483f1545f
BLAKE2b-256 ecd8fc2a4ea83fd55131acd2f2c1fab1a0b947f1e1c51fd5ab82ab47793b4c9a

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp36-cp36m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp36-cp36m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 311a58a042f6c209b74e85a1ed5f4bcefa485369325e7d3fa00a79bf22c41673
MD5 abc6310237fca3bff5c63d494ab6531b
BLAKE2b-256 60e99ef776512fb1233ad146a45ecacaf0c918032ac58d3156ece311af5bce0b

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 38.3 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 bf254612568f09c597ed57ad0e18070ade1c47983cb2531827780c5ebbaabb09
MD5 a61b3243e7d46af2b1ead9d5669692e4
BLAKE2b-256 723628d403f0405c9d7e8ffc751515a53189dd8a4123c966c06b9c845553299f

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp35-cp35m-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.4

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 2a0e0c33e609d84f4d45a8a6a64a53b07da09425d27c6de1ca72701aab54b679
MD5 522979978e4ea3782a0a10d7a3e9b693
BLAKE2b-256 d12d1857ce9e2c151f7f9386c86a0198aa1b84cd6eed756343db7fbfb4a7fc0f

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 571e26084c09724239b128c404dbb097b65668d0be3b481e68c47659fc6ea360
MD5 5f793302c93ac379b960478b1f836593
BLAKE2b-256 8459f2ae86391e733818196f637b93b48ccf49bf8e0083145e329f043f94cb44

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7cce1880336b546408d7d1e6518823de6b3fe31f88ee66e6da03795438afef3
MD5 489d17e236afbb53e50238e5df62ecf6
BLAKE2b-256 e0cdbc9a94e5ce4d51ed87e035a16414ccd9c8b2bd7d8acbcc39b44ccf7d59d2

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp35-cp35m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp35-cp35m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 3948af21f0313d38e57588e718974e5740a43fda881bfb64d027c6128a282390
MD5 cc57fdca9b5a3adb3b7a12e8f8fea691
BLAKE2b-256 64e76242bc12b230de1b51700a7149180bec8d1030debdee53fa3e4259774cfd

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 38.3 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 ad62676477193fc255344e0ef2c9cc05f590b7a31fc3ca4904d59b8c398167a1
MD5 850a9f80949b7380dfda6a1630fdaba0
BLAKE2b-256 153d08a9f4f1103a2886429663644ba7252180936331c34017b142a4b8c570ee

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp34-cp34m-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.4.4

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 1a5a0a29f5f291b01e44bee71e8e66aad858111106753567436e755d9b0673a9
MD5 e8ffc3614f24d3733bea879c6f72ebb3
BLAKE2b-256 e48b00007415ce8d6f69559d0cf4e31d7c93f50eb97b0e5138e05ef8eb378804

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5eb3c1d17379d6f0c85999153d99a4886598ce7d9c392f4601683a0c4e3b6274
MD5 42178750b799df143fa2e96dadd4bfc7
BLAKE2b-256 f2c6e7a1c4ea433c54a5e613a24c3165fa937595b5467ffd86c86f31aafdcb05

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp34-cp34m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a98d16235340ccd0af169d89a84a36f472b0e78fafdb2ccfa43cee5c8d09fe7
MD5 7ea027a93f067367abdac9c01e8569ad
BLAKE2b-256 f209c4590189cf1f13548b83c7b5d81bded0009c065e217a18f2dbb9ff50f63e

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp34-cp34m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp34-cp34m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 2bca20d61c2000759b7237fe7e865b1ef1020240b5391d92c07911a2fb536601
MD5 321fed0eaa96118db8099b1062ee87de
BLAKE2b-256 8eedf8156ff16de4801d1338b2e34b4321f5228387cb256d1ca83d7e64a13b32

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e9a1dcadafc08cb8a5144d86c5a46bda3317a129ffa501c2d6d1c6a0d25d7c50
MD5 2d9200f179b8f1b4c0dbbe10e2f3d336
BLAKE2b-256 39a45f6de836c55dad06da6dad7f60a86de34d1dc4f24a6021ea1d01e7bd6728

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp27-cp27mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9d41295108f186cfc8e31817e721752a54ba70ab1b1997d176c4aa00aee945b
MD5 697f0e76770a5f251f35d4b51c026cd1
BLAKE2b-256 04effe94947d178f32011d7ffce3f87d802a7f7e2e8cfa15d7b64f3e2636b98f

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 38.3 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 59ae96459f68ee37ac6f8659539c574221dd2423ea7b4ebad2103ef682212cb3
MD5 b10a82138f16804e5a68a0db02f4f15a
BLAKE2b-256 ecddb42762052e05abe1b38aa61005dd3c517dc5f1ef3db1dbab75e8f3d548b3

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp27-cp27m-win32.whl.

File metadata

  • Download URL: opencv_python_headless-3.4.5.20-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 25.9 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 3931d3995372c772e27a4b129733afb142f00fe71340bd5154ac1d842de7d21f
MD5 0170616b915f4f89ad7a2c5b3b1eabef
BLAKE2b-256 d7912efc73009b1503800102009e1247db7abbe73d7cb04ccfa36c166b3b1fd1

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fc20392ce5d2ce09b1c205027f9a873f48be58da91ac3479d1051621272e9e3d
MD5 3f06d151a7db5445d8b5e4dc5796646a
BLAKE2b-256 8c949c02052d029caf7eb91b3719ec467af361b732ae3ad709ed9ea65b4088fa

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp27-cp27m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 86c5c61804474fb3f1ffae8e57335c0bafa195191087c4ddb449d40b056b015e
MD5 7bdee920a7a543fd919dd9ff90bf39bc
BLAKE2b-256 8388c7c87520d2178ae162bd6c5bd3b42bff3302b42f79d7ab28efa9a6e0a188

See more details on using hashes here.

File details

Details for the file opencv_python_headless-3.4.5.20-cp27-cp27m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for opencv_python_headless-3.4.5.20-cp27-cp27m-macosx_10_6_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 d3e3781c2fe201d24718442bf1cf69e0d3a9f494ce6a9672aa25a06cd2281e05
MD5 037dccb73e543775c5673fc1c5cf2978
BLAKE2b-256 9026c52b94da11f3de273f2775720e5409d7f132ad5e8c27161d5eb5f047c6a5

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