Skip to main content

DepthAI Python Library

Project description

DepthAI Python Library

License: MIT Python Wheel CI

Python bindings for C++ depthai-core library

Documentation

Documentation is available over at Luxonis DepthAI API

Installation

Prebuilt wheels are available in Luxonis repository Make sure pip is upgraded

python3 -m pip install -U pip
python3 -m pip install --extra-index-url https://artifacts.luxonis.com/artifactory/luxonis-python-snapshot-local/ depthai

Building from source

Dependencies

  • cmake >= 3.4
  • C++14 compiler (clang, gcc, msvc, ...)
  • Python3

Along these, dependencies of depthai-core are also required See: depthai-core dependencies

Building

The first time you build, the repository submodules need be initialized:

git submodule update --init --recursive

# Tip: You can ask Git to do that automatically:
git config submodule.recurse true

Later submodules also need to be updated.

Local build with pip

To build and install using pip:

python3 -m pip install .

Add parameter -v to see the output of the building process.

Wheel with pip

To build a wheel, execute the following

python3 -m pip wheel . -w wheelhouse

Shared library

To build a shared library from source perform the following:

ℹ️ To speed up build times, use cmake --build build --parallel [num CPU cores] (CMake >= 3.12). For older versions use: Linux/macOS: cmake --build build -- -j[num CPU cores], MSVC: cmake --build build -- /MP[num CPU cores]

cmake -H. -Bbuild
cmake --build build

To specify custom Python executable to build for, use cmake -H. -Bbuild -D PYTHON_EXECUTABLE=/full/path/to/python.

Common issues

  • Many build fails due to missing dependencies. This also happens when submodules are missing or outdated (git submodule update --recursive).
  • If libraries and headers are not in standard places, or not on the search paths, CMake reports it cannot find what it needs (e.g. libusb). CMake can be hinted at where to look, for exmpale: CMAKE_LIBRARY_PATH=/opt/local/lib CMAKE_INCLUDE_PATH=/opt/local/include pip install .
  • Some distribution installers may not get the desired library. For example, an install on a RaspberryPi failed, missing libusb, as the default installation with APT led to v0.1.3 at the time, whereas the library here required v1.0.

Running tests

To run the tests build the library with the following options

git submodule update --init --recursive
cmake -H. -Bbuild -D DEPTHAI_PYTHON_ENABLE_TESTS=ON -D DEPTHAI_PYTHON_ENABLE_EXAMPLES=ON -D DEPTHAI_PYTHON_TEST_EXAMPLES=ON
cmake --build build

Then navigate to build folder and run ctest

cd build
ctest

To test a specific example/test with a custom timeout (in seconds) use following:

TEST_TIMEOUT=0 ctest -R "01_rgb_preview" --verbose

If TEST_TIMEOUT=0, the test will run until stopped or it ends.

Tested platforms

  • Windows 10
  • Ubuntu 16.04, 18.04;
  • Raspbian 10;
  • macOS 10.14.6, 10.15.4;

Building documentation

  • Using Docker (with Docker Compose)

    cd docs
    sudo docker-compose build
    sudo docker-compose up
    

    ℹ️ You can leave out the sudo if you have added your user to the docker group (or are using rootless docker). Then open http://localhost:8000.

    This docker container will watch changes in the docs/source directory and rebuild the docs automatically

  • Linux

    First, please install the required dependencies

    Then run the following commands to build the docs website

    python3 -m pip install -U pip
    python3 -m pip install -r docs/requirements.txt
    cmake -H. -Bbuild -D DEPTHAI_BUILD_DOCS=ON -D DEPTHAI_PYTHON_BUILD_DOCS=ON
    cmake --build build --target sphinx
    python3 -m http.server --bind 0.0.0.0 8000 --directory build/docs/sphinx
    

    Then open http://localhost:8000.

    This will build documentation based on current sources, so if some new changes will be made, run this command in a new terminal window to update the website source

    cmake --build build --target sphinx
    

    Then refresh your page - it should load the updated website that was just built

Troubleshooting

Relocation link error

Build failure on Ubuntu 18.04 ("relocation ..." link error) with gcc 7.4.0 (default) - issue #3

  • the solution was to upgrade gcc to version 8:

    sudo apt install g++-8
    sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 70
    sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 70
    

Hunter

Hunter is a CMake-only dependency manager for C/C++ projects.

If you are stuck with error message which mentions external libraries (subdirectory of .hunter) like the following:

/usr/bin/ld: /home/[user]/.hunter/_Base/062a19a/ccfed35/a84a713/Install/lib/liblzma.a(stream_flags_decoder.c.o): warning: relocation against `lzma_footer_magic' in read-only section `.text'

Try erasing the Hunter cache folder.

Linux/MacOS:

rm -r ~/.hunter

Windows:

del C:/.hunter

or

del C:/[user]/.hunter

LTO - link time optimization

If following message appears:

lto1: internal compiler error: in add_symbol_to_partition_1, at lto/lto-partition.c:152
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-10/README.Bugs> for instructions.
lto-wrapper: fatal error: /usr/bin/c++ returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/depthai.dir/build.make:227: depthai.cpython-38-x86_64-linux-gnu.so] Error 1
make[1]: *** [CMakeFiles/Makefile2:98: CMakeFiles/depthai.dir/all] Error 2
make: *** [Makefile:130: all] Error 2

One fix is to update linker: (In case you are on Ubuntu 20.04: /usr/bin/ld --version: 2.30)

# Add to the end of /etc/apt/sources.list:

echo "deb http://ro.archive.ubuntu.com/ubuntu groovy main" >> /etc/apt/sources.list

# Replace ro with your countries local cache server (check the content of the file to find out which is)
# Not mandatory, but faster

sudo apt update
sudo apt install binutils

# Should upgrade to 2.35.1
# Check version:
/usr/bin/ld --version
# Output should be: GNU ld (GNU Binutils for Ubuntu) 2.35.1
# Revert /etc/apt/sources.list to previous state (comment out line) to prevent updating other packages.
sudo apt update

Another option is to use clang compiler:

sudo apt install clang-10
mkdir build && cd build
CC=clang-10 CXX=clang++-10 cmake ..
cmake --build . --parallel

Project details


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

depthai-2.15.5.1.tar.gz (356.3 kB view details)

Uploaded Source

Built Distributions

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

depthai-2.15.5.1-cp310-cp310-win_amd64.whl (9.3 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.15.5.1-cp310-cp310-win32.whl (9.1 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.15.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

depthai-2.15.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

depthai-2.15.5.1-cp310-cp310-macosx_10_9_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

depthai-2.15.5.1-cp39-cp39-win_amd64.whl (9.3 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.15.5.1-cp39-cp39-win32.whl (9.1 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.15.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

depthai-2.15.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

depthai-2.15.5.1-cp39-cp39-macosx_10_9_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

depthai-2.15.5.1-cp39-cp39-linux_armv7l.whl (11.2 MB view details)

Uploaded CPython 3.9

depthai-2.15.5.1-cp38-cp38-win_amd64.whl (9.3 MB view details)

Uploaded CPython 3.8Windows x86-64

depthai-2.15.5.1-cp38-cp38-win32.whl (9.1 MB view details)

Uploaded CPython 3.8Windows x86

depthai-2.15.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

depthai-2.15.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

depthai-2.15.5.1-cp38-cp38-macosx_10_9_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

depthai-2.15.5.1-cp37-cp37m-win_amd64.whl (9.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

depthai-2.15.5.1-cp37-cp37m-win32.whl (9.1 MB view details)

Uploaded CPython 3.7mWindows x86

depthai-2.15.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

depthai-2.15.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

depthai-2.15.5.1-cp37-cp37m-macosx_10_9_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

depthai-2.15.5.1-cp37-cp37m-linux_armv7l.whl (11.0 MB view details)

Uploaded CPython 3.7m

depthai-2.15.5.1-cp36-cp36m-win_amd64.whl (9.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

depthai-2.15.5.1-cp36-cp36m-win32.whl (9.1 MB view details)

Uploaded CPython 3.6mWindows x86

depthai-2.15.5.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

depthai-2.15.5.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

depthai-2.15.5.1-cp36-cp36m-macosx_10_9_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file depthai-2.15.5.1.tar.gz.

File metadata

  • Download URL: depthai-2.15.5.1.tar.gz
  • Upload date:
  • Size: 356.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1.tar.gz
Algorithm Hash digest
SHA256 25774f7b39e12b7c7e264fe9173a4b12e088fb0a068e8bd1a4fdab1e3df2da5d
MD5 9ad5b4efb9f3bf74e0724181b3b621db
BLAKE2b-256 c20386699a7a221bf25b656eda19a6a3eb5ce2f5fa49446c901a4c72e3481f45

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0a7a6dc8de7a9f2f8e76942a22e5914e56a67973b2840c270282e97174a58c5
MD5 80a9869edfd21969fb63258b842408b7
BLAKE2b-256 4013e0cadcfa74080d9426f881bd3802bd63e1a7e9e900fe977f0dde05caf9d3

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9fca1f62234fa0e57e0dcba1fb628a93974b43870863ddfac1deaf2cd25148f4
MD5 741816f66014a44e3089ff0254d7d66e
BLAKE2b-256 eb0a03431029fa6939663d3066e82f089b083c335f20d1426e29f5dfcef89a9b

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29ba53e4568e532f5de9a277e58e3d2ef3ff4986da6aeaa1a2c6fe7a073c23ec
MD5 b1a34b939f0fdc01dfda489b8b54befb
BLAKE2b-256 53dff9dd6d62d9685f146e435c0fb5c4f6c19114fcb9646ac534c334f76f94b0

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f85dbcd4139b57ac56947c4445d52cc22b0c90b43da896b81ff39a808fedf67
MD5 81a633962ba09e9b472a890213e6e5d7
BLAKE2b-256 a45daa60dfbc15658529d49c7640671c084c4e5d4bb5ee24575dbde6a6c32343

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0483fec0a57b96ee59c5fd1703b7bfd454784546e657d26a003e36731405a98d
MD5 10a8eaf80fb4cd25ccb657ca678d9c27
BLAKE2b-256 67c4d3e415d4e7be6d1278fb20a6ff4ddf2b2036eb5c5ff71737b9b1c0c2e637

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e032afc694cf4d808dfd2a5186c5a24699fc0e858324b294c08a93d89359bdc8
MD5 f8f942d52b6eeebb0788ffbd9bf66721
BLAKE2b-256 40a5a011c5d18b410cc058eb03bc0c306d47feb35d7894560159b6a0e4765a8c

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 91cc205cf16e40c36660fa380fc457c12364adb4c4765e2556e72075208d54f4
MD5 309ea6299ddaf983fcc5fcb509f76396
BLAKE2b-256 0d405fb4b9bb32f67b82fb584268849032bff1ab3a2e3d3355dc007a1b4669e3

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c1b5c0a991c0543cc4daf17b4d25d0db689dcb6b554d66662f7c49beee076d8
MD5 fbd6565bec6c084603e584f5f3fbebd8
BLAKE2b-256 2403ad7e1d9faa5acb45c4a816f70aca8457d7cecd8d74225f3d2c57b2b9bb81

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a63f253ef59fa9f4ba959532bad797168cd5bc8a8110f092e9ad15d3652f81b4
MD5 a08c2c7674c3a0437699b8985c8e8c9f
BLAKE2b-256 f82a5ee664e00a6bf277ef2ac8cff4420d595fa3102416b50cbf9e2a337ae378

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a68328663737c601c24a2e925b300fc61788a5cd02dd81dcc1a49e4801d0866
MD5 f32a1f55f9b31bd61f30228a76363071
BLAKE2b-256 45245c56ce76032af3cbc0dc2efd66c008f4bd9058276344b4000d514a322f3f

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp39-cp39-linux_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 2b8855d46c7d77bd47223d5ec61f44215f10e6aa42a07e487e80be51a6bc7c6d
MD5 9bd74edfa05cec8a42c9d295e2d4993c
BLAKE2b-256 93d56fe381d106b0d555d621101dae29127466d26c5c88a4c1352df4a93e6515

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 591863cbaeab72c5f685808a6d2d36f7b78e03248886e4c1470c2606f877243d
MD5 087c1b42b37c15d8085136ff3a87a928
BLAKE2b-256 56ae4efed65863fa763dda608153d9969459907e4ef75e25704ae3eacdb8da24

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 47691470426c7dce9e485ce72351052d9b48d0695971521c403e3cc87d4ca779
MD5 961b856ca32c83dded9035d4caefaa75
BLAKE2b-256 3df974d4476ddf56e9d5144b0e68cfe503641111f615b479f994f4b0cb7d3729

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b98de4cf66d720cf0b03df6e1c454ca0484e6193242ec33e19ebbc3dd31d4396
MD5 1c0640d1d719edb949c8d86b955d6b5c
BLAKE2b-256 1430f676dc73f4f0865095aebec36b841ff8442a468c532e58c82e8cccd70d56

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abc7a640b13f00c2d6bdd78052025f79dfafdde445f82e77ff8b3dce12049312
MD5 0a545cb86a8ffa411d147e9feaa1346c
BLAKE2b-256 773afd74d0549f0a14d7c21971cb1261b00a274932e26edca6ea008a6e2f0a5d

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 16a7164c68e35f947458691890c157c4d354baefdd2d8dae1010f2cab3d3a834
MD5 c2b30a5b2362d7eeebccbc1bb06577d5
BLAKE2b-256 658a3ce92a7c5d3c965e125b66b37408463ef5a4a7aca584d5cc2682920a5beb

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bcff9e11749b45d7cd690645f1e8bdb93f643fc0f5e20c06632d3d49f0e61e8d
MD5 5cc9499b834d1c7715f6d0636976e68f
BLAKE2b-256 cdc2776fb95d393156754c06524ea3e3fb2e5af073a7799bdf0ff57165f6c56f

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ea6a73cc7f3784072a45e496d9263fd010d2dd9f71846056cc30d45f5f1ed5c4
MD5 d77c992fcf8e3b782e39efcbf7b2a5cb
BLAKE2b-256 3530cad7c41d509889e271ae135d60226794ad7a6b0f735f25b5820db5a24564

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78a7009f58cda34d134d18d77ed6753c86228758ce887ddf2b65fe25bddb6823
MD5 852ee56ea1f55fbc04b827ea707633be
BLAKE2b-256 856eac62b3e211bf55e57b9341b186cba5a5b6c62b962cde4024e2d8671b5c88

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12a16ea676eccf495d6e59f0e55370fd2b4138712c394fc202b00a9480cfb80e
MD5 8d7125f9848f2d63bd3523617be9e114
BLAKE2b-256 914ffe34240b498d4ffa0665ad1da0ad476d4c2d1f1c54960367ec22480f2b14

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c5243442ab44e7ea17cb14552dfae48d29368523c3235aa48fd8213d5624f83
MD5 a515deb8ce5d091cb722d4b6b9d9e09d
BLAKE2b-256 c2af133d17e358bc562079c59610130de5e8ff50a108cf33e5077678a275b1d9

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp37-cp37m-linux_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 1a5bd4c1cf86e3936f77415c8409b4151c3b7d873b252ca6dcc86282eee9fc0e
MD5 5771eec00f490bf2d761b53de8987e60
BLAKE2b-256 1917dd59ec84b31a677f45d426daf3bf31ee522e9f8a856b53eb33158be5469a

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 9.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d79b5f2070b649e5b76f4c20f19c7d0ba529a75407b39b37fb39e2831038d96a
MD5 c0dea5a0404a073a29971fa3584a4e68
BLAKE2b-256 7381c342e0b31cb4cdce2d46c000fb9062e75500e4484a2fc530be9d10e9dea9

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: depthai-2.15.5.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.15.5.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 13c2c9d6bbce717dc45b0543eb8c746cb60350b3a04c6bc949bd2d649607a51d
MD5 a57b8d41cc6413ef9f11b7712ec79926
BLAKE2b-256 d29fff1ebb0f1d6b7ef36cd57b3763771ce9e9cf60a4999756a0437e21573f7a

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be34dd70207e28045233edb2dd35fba791eb1c8d03917055fde1871e465a0173
MD5 4a2a487724ac1d34e22b235e7caba394
BLAKE2b-256 4f80b1a1603a45e6ce3f6c8e50ba98dbbcb12f25cefb37b57d7439ef1276bac8

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7431f81195a90955638e3043b994fd6c4e06298a3dfa546ab8a25f0f76718a2
MD5 460fb609e566ea7df31940ce9e33e42f
BLAKE2b-256 378f38bfa05f828c27a18118f6578a0f4e41b3ba41dc2f102aa93a839fe353df

See more details on using hashes here.

File details

Details for the file depthai-2.15.5.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.15.5.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbf0a768f88093bdf5cdfe9e6852a786208091bb078ce6d884112b8b8ede17a5
MD5 25913508ad69f223196f9c601fcfb8d0
BLAKE2b-256 6ff85df174a9b548cea255bba6110d571a4e0e3d7776f0e6629e4836903a438a

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