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.13.3.0.tar.gz (310.8 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.13.3.0-cp310-cp310-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.13.3.0-cp310-cp310-win32.whl (8.6 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.13.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

depthai-2.13.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

depthai-2.13.3.0-cp310-cp310-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

depthai-2.13.3.0-cp39-cp39-win_amd64.whl (8.9 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.13.3.0-cp39-cp39-win32.whl (8.6 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.13.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

depthai-2.13.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

depthai-2.13.3.0-cp39-cp39-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

depthai-2.13.3.0-cp39-cp39-linux_armv7l.whl (10.6 MB view details)

Uploaded CPython 3.9

depthai-2.13.3.0-cp38-cp38-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.8Windows x86-64

depthai-2.13.3.0-cp38-cp38-win32.whl (8.6 MB view details)

Uploaded CPython 3.8Windows x86

depthai-2.13.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

depthai-2.13.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

depthai-2.13.3.0-cp38-cp38-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

depthai-2.13.3.0-cp37-cp37m-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

depthai-2.13.3.0-cp37-cp37m-win32.whl (8.6 MB view details)

Uploaded CPython 3.7mWindows x86

depthai-2.13.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

depthai-2.13.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

depthai-2.13.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

depthai-2.13.3.0-cp37-cp37m-linux_armv7l.whl (10.5 MB view details)

Uploaded CPython 3.7m

depthai-2.13.3.0-cp36-cp36m-win_amd64.whl (8.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

depthai-2.13.3.0-cp36-cp36m-win32.whl (8.6 MB view details)

Uploaded CPython 3.6mWindows x86

depthai-2.13.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

depthai-2.13.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

depthai-2.13.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: depthai-2.13.3.0.tar.gz
  • Upload date:
  • Size: 310.8 kB
  • 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 depthai-2.13.3.0.tar.gz
Algorithm Hash digest
SHA256 d33e8c56e2f2e33762b6675a273d04e2c6c643c7353fd76f56ed2ae146359d19
MD5 41bc53361ed7c48c967a8114e854b72d
BLAKE2b-256 429ee44e7ff2f0a7cd4ad1b5a8235c9f5102918cf751c1b8a80d6504265cf720

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.7 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 depthai-2.13.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 44e6ea10d26bece530199d372bbf639ce4faf98d71a1a6c74731cdeb7d97da16
MD5 ab86322e3138f9bcf490e6f6ca5df3ba
BLAKE2b-256 d2e024bd74b14b843209f1675f3065e8707ebf822d9c7e358f85c54660a7da27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 8.6 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 depthai-2.13.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b27a8c4623ea8b743561e43f27f90259e3ed330abd2387f72d31abd6a7af371a
MD5 e841966e8216a88c70d033eb9b0fb450
BLAKE2b-256 073f7f88d2383f2b005b0b09156c23b3406a027d9ba2949b87f3a8f8306c6c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 298965697ec24f73afe53c3b80add7ef7843fd40becddef6f720fb58d1acf245
MD5 1edecde95b91190d32dc7d4d490cdec6
BLAKE2b-256 8d37e061c5a9b179ced60662f586af9a5a5e81502ae2cae3cadec1cba78d6b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1c02706051df0f4f0033f86d0cdde08caa4a5562427ee1e29c25a21e19b3f9b
MD5 07acd196433c81fb68586c12a29ab232
BLAKE2b-256 e5c552d1eb1b57ad7ddfca7aebdd55124a891aea068c098fc4e7205e07741d6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.10, macOS 10.9+ 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 depthai-2.13.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 297f8bd146fd5d8c4111f65ab2a42dc4e9680348693c4cd9b3f34279424a7e5c
MD5 3a131bda2821daf7fcdc86fe5602e07f
BLAKE2b-256 9cc3094c62c0d10992b1cc18ba01ca0061b227a01de4ac4950c1a07bc4b4c1b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 8.9 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 depthai-2.13.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f3c69ff50c8bd0e6ae6652d0283f392462865146ba0a2cc5ae10a670a8c84c4a
MD5 5564b5f73a00a9125632dae48ecb3839
BLAKE2b-256 4c6fddacbc0d03c8dc28565fcf3644a66a6c6e4b616d6897448c1842a0da61fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 8.6 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 depthai-2.13.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 60ddb8ac5bdec3e8dc58a842e76ccf7500e97af1cb8a3b1fafc04f753dc80e26
MD5 0a3829841f2cfb52672b4814b73eae3f
BLAKE2b-256 ea5b82bfc32b670203264399b3944a065c0c7f38efbf2ec9bbfa75ef5cadd310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b760010771a4f7adc62f998e407d6646d8ba538db30f8f13c34b7d83701848ba
MD5 cdbd9ce07a374ed05efdc06eedcf54ef
BLAKE2b-256 d168de9263f41d90fa09ac96e1b5fbf3c3cb2210d3132920c3f4c0127dc8e214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a5925cb5705040589541a494f02040a985da0fbb68e1cee941cfe1e27e9d20d
MD5 295fd54aa34a1cc718d7b60d39fb58c4
BLAKE2b-256 cdde34ed0f64c43c5d05afd33ae232f63c83cdebc03f66ca8af6542d0fc64993

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.9, macOS 10.9+ 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 depthai-2.13.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 564fa734a9b1bd4118ae3cef023d5391209c215d4894be99c076495552cc50eb
MD5 00f0ca51c8818808eb1695c05921b67d
BLAKE2b-256 89993f42ed6d8a739ef6356f3e92095ff6f01b6dd2a63f4ac18b69e701ec7cd1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp39-cp39-linux_armv7l.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.9
  • 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 depthai-2.13.3.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 637bedc705dd655a7e55f449f1f839327981c0577104fa9401dbb637139a740b
MD5 44f1212c95cdf26aba7d067104eec81a
BLAKE2b-256 05cbf022845813d088bc54b17f8bc263168c0e15cc0462b1add9730c90fec5d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 8.7 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 depthai-2.13.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5550fcf75f41fd3b0d2a969d213e87c1148337a70e848bea581b699a56155f11
MD5 0c47d3d95c80c3947919987603a35f06
BLAKE2b-256 c16b62aa7cf45968a2850264df4f0afcb7c13321907f9ed8e36c02c6d5eeaef6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 8.6 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 depthai-2.13.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6ee7373c6ccd1b29f8909adab2f2bb23c493758eca1b2fefe4ce2a8142913ebc
MD5 b6753524f51de12b3038eab2622530f0
BLAKE2b-256 78d3329c86307dc366d6f184864b5e44769c3296b676941753cf29f92991798e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c7a9c3708f50435e9e73f93969db4dff0614e18ecf43d1b650df05ed99a5b17
MD5 316480ad3a6571c7699bf8be815684a2
BLAKE2b-256 b98f849b7478bae366b6a7127381d5427641112dbbda991cb5329b10a627e0ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2c2a713ceeab80ac92742f6a7540cce69e21530b53d9568b6bc22073586b1ee
MD5 69d875312bc161da82143e8aab3a20da
BLAKE2b-256 59788f6bd5492f86e6de17f3a81e6fa3245cfb5cd35fecacafb7ba1b7abac208

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.8, macOS 10.9+ 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 depthai-2.13.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b225545fa9ef1fdf9ec068e46dd2e7db058e67949147b7aa66e5c407947307c9
MD5 a1004fa3c8a2a4103e6d5cb0997f3a2a
BLAKE2b-256 1f036d6483de9594965db0e0080e90e2a92c866955595f1309d322240d42249b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 8.7 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 depthai-2.13.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 dcd3b1d4451c863f3cc666b09659ff8160ce09f971a960134392aec58160ab02
MD5 8d15e050c5da04a711e343d2eab3c6e1
BLAKE2b-256 6286994fb0ca18f1346f126fd7f5490e093ae4cd58fc0051351d340dea50d71a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.6 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 depthai-2.13.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 16c4d7b84c804cdf0cc4d556df1a66e2d2880edc1c755c5d64abca0b84041a42
MD5 d33f8b1195470de377859a9b443e9be1
BLAKE2b-256 5dc1be558ee37dbd70c025dcc16e63f44af4208ab1f483d5cf1bf1f6bf3c421f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b7085f7d4868bcae007a30cefa0214e475461d690c89c5d8de376a730323941
MD5 28c2f1b7be65ee9d2607d8883f6342b9
BLAKE2b-256 be10e8d72430a08d02596575a48d9cf600e754ceb3302f275526b93524ee303a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4ec376c1da20c5a585d9fe51209229bdd41568cf9b063a7041226f27803d3af
MD5 c4d4fdecbe1d89297f41627e57fd0ae2
BLAKE2b-256 8c254885756e25f8621d3dfcfcb4a0ac5d179ba58b47a8c52abb41976ffdd345

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ 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 depthai-2.13.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0754d395244072410150bd9381c973288be8aefbc7190f2041c533f0a683b6e9
MD5 79d9d0d2762f0fb3fdc85fa83436b6ae
BLAKE2b-256 14b9ab7ce6441bef7ac1e126fbdbde693bc04cef3b14296dea891898e854785a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp37-cp37m-linux_armv7l.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.7m
  • 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 depthai-2.13.3.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 853c291a962fe983ccc314cc7980ca521d60f350286911c85615e7a661f49f8a
MD5 0d76fbdbadebd16d547a533841114218
BLAKE2b-256 e69c8cf4f2cdc80e79c8769997bc29673623518a1e50cb870e469f0c01367ff5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 8.7 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 depthai-2.13.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2f253965c246c20565cf40d1edc20e061f5c5c98b12b5702190918f95ede16b6
MD5 e43cffa5a5a34cba2ed7edde25ff7f58
BLAKE2b-256 7d802a5b7f71d1e6aef1b0f849b11eda1cd34e15c7a0dfe72038ade2a294355d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.6 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 depthai-2.13.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2418d5a5d8ae576dad4de2a1d1d6991fd9e374081c347288b9598b82fc7821f5
MD5 f35e0c1850ace84da61d59ac95400765
BLAKE2b-256 199ca6a90644fb9e02beed2119b69c5264e7fb2189ca0ebe66bb9d71340d8e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec7725e7eacd3293f6b3a7ce87624791e3fdc310004486822d46a35c4243972e
MD5 c3c79526d98dd9f82db4e708de2ad33b
BLAKE2b-256 6e9b0248b8478b4864999be8f5cad396e228b0f6f14ef9c556af8737b3301827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.13.3.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a918ae3a04d19b30dd2d8e336a10f4645fe5283281eeed97ffe64e576d763ad
MD5 f4968df9dc15451f899d364a39985719
BLAKE2b-256 8363f1c8283b477a21fbe84a8f95ad8163d030b287f1024e9ef3dd1c36980bbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.13.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ 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 depthai-2.13.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7a0ca39ead160348aee41c80b7a61fbe9ef86b54e456b2546b459bac262f2f64
MD5 d95c113450dc74d3af8829c42fd5bcb0
BLAKE2b-256 1af0d745f811a0b745b0874466e8377a0834cecca0266101dfbe79c6fd0066b2

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