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, Windows 11
  • Ubuntu 18.04, 20.04, 22.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.23.0.0.tar.gz (421.4 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.23.0.0-cp311-cp311-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.11Windows x86-64

depthai-2.23.0.0-cp311-cp311-win32.whl (9.9 MB view details)

Uploaded CPython 3.11Windows x86

depthai-2.23.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

depthai-2.23.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

depthai-2.23.0.0-cp311-cp311-macosx_11_0_arm64.whl (10.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

depthai-2.23.0.0-cp311-cp311-macosx_10_9_universal2.whl (10.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

depthai-2.23.0.0-cp310-cp310-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.23.0.0-cp310-cp310-win32.whl (9.9 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.23.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

depthai-2.23.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

depthai-2.23.0.0-cp310-cp310-macosx_11_0_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

depthai-2.23.0.0-cp310-cp310-macosx_11_0_arm64.whl (10.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

depthai-2.23.0.0-cp39-cp39-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.23.0.0-cp39-cp39-win32.whl (9.9 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.23.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

depthai-2.23.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

depthai-2.23.0.0-cp39-cp39-macosx_11_0_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

depthai-2.23.0.0-cp39-cp39-macosx_11_0_arm64.whl (10.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

depthai-2.23.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl (12.0 MB view details)

Uploaded CPython 3.9

depthai-2.23.0.0-cp38-cp38-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.8Windows x86-64

depthai-2.23.0.0-cp38-cp38-win32.whl (9.9 MB view details)

Uploaded CPython 3.8Windows x86

depthai-2.23.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

depthai-2.23.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

depthai-2.23.0.0-cp38-cp38-macosx_11_0_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

depthai-2.23.0.0-cp37-cp37m-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

depthai-2.23.0.0-cp37-cp37m-win32.whl (9.9 MB view details)

Uploaded CPython 3.7mWindows x86

depthai-2.23.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

depthai-2.23.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

depthai-2.23.0.0-cp37-cp37m-macosx_11_0_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

depthai-2.23.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl (11.7 MB view details)

Uploaded CPython 3.7m

depthai-2.23.0.0-cp36-cp36m-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.6mWindows x86-64

depthai-2.23.0.0-cp36-cp36m-win32.whl (9.9 MB view details)

Uploaded CPython 3.6mWindows x86

depthai-2.23.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

depthai-2.23.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

depthai-2.23.0.0-cp36-cp36m-macosx_10_14_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: depthai-2.23.0.0.tar.gz
  • Upload date:
  • Size: 421.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0.tar.gz
Algorithm Hash digest
SHA256 c01375d82eb507ab3dd54c7d49e8f7cbf93b3063c4408f98e34f7a7ff796ff10
MD5 06326c95d17110cc2721d7bd9fe891ad
BLAKE2b-256 6a997a89f58263590f67f6e5a4082eebe8bdb5483368ed9e6674b02abd0bb3ee

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: depthai-2.23.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7864dfee2bc314387b85e8686701c2034663028c68e460be797be073303383f6
MD5 f86f9c888eb1c85d344909d15a2791d8
BLAKE2b-256 4143d0e30095e5e1e96b3a320ef0fa6e1b25fc004f6c5f6c52f9a92cc3d352fa

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: depthai-2.23.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a98ce046c15e64fe77166d51e7493d13879636cfb0ea0b704a0c163a352140bd
MD5 6ac53cc6ea31e3f3360a1de364b137ad
BLAKE2b-256 e8bbe3da126ca92a921009812992628df77d5ebfa5afb3547dfa7375ddeb90ec

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7851bafb0f203a876c723fde5c87aeb0e68201902bc1b90af1e0ab554df5762
MD5 7cd8a1f310ce7f9bb291202cd7f97c28
BLAKE2b-256 c97b816e76361e554b30abd2207ef8eeb3484cce57cc52bbe822bbc02d9df65e

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b0d805024cc27023d2ced94b6b8817c6d07dee968bfc9ef5bff3afac0133819
MD5 d101e8be8e1538daf6335de398bc1ac4
BLAKE2b-256 b6100a400d1af4e73dc12722f95b8ff34fb763529ed0df2cc0dec479e34c0e69

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 823c9f075f6ba1b7a0c7e6dc8de887c427ee2aa8b2558b4357b13943c0de9e49
MD5 15259d7d041183c5b6bcb3dde1db0962
BLAKE2b-256 48ab2261d92bff14ffb3a077df36a70a556695592e5084e248cdee6cff2d423e

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 90fdc80a170c7c80e743b12d778ad3d89b562ecea7408416a696841ca63d1ad5
MD5 a61e906c871980e2b1b8bebd59a138b4
BLAKE2b-256 eb82773494749c431182ccc1bc33ca2157f6309bc04d874e0c0cba304acb3f7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c8811480304d0cbdf09e8b7c3c0668f463e38f1fa6948aa142dffc6eabe02bba
MD5 120e4901a8235563089cb43eb8338c76
BLAKE2b-256 7c1dc5d61c514e4b13b502218fa90b778e63d4f8d410396913724573b5ca717f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a7be4bdb98c269bcc96f1c731f1f1fb10c3a870079aacaf6ec0ae6aa72ffec3f
MD5 c597b2d7c5834d0cd1c7f4a76507774e
BLAKE2b-256 e807be3f26c4b4ce64b0f4d7b41aba6921e483cbdaeab5dbac6e40bd5633b20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2dae238c8a1587a06299b6a5f61afb743b5e5bfbbd97edab8f04dcf530bf55d
MD5 05cffce069d3d4210e1616b779b42429
BLAKE2b-256 2206dcfdaa1c917a0fb59075fbf93f3b6e062571bf7b115e80ff8f76804f1441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c64c7ba46a3b6b9c6a09bae45cafe827a4f7210cbe21d2ec4f46e7472e24013b
MD5 dddbccf7988d9f0798703e72a0c1a2ad
BLAKE2b-256 60586cbdb6c50aa1114e3bb52a931529ffbec08b50c8bb2c0a674f3ac138f8bf

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ac4a7db342765252d944d19493a0312fb18bcdb02a24e788683424d707618fcf
MD5 b24ee73257b9ec3d2e64c879952061f2
BLAKE2b-256 afef86f708ae30feec5b47341c14ba4ee329ef2ef534c66fa3c80664962b97f2

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 404f8cb5fb4204d7614503ba4696dc67206c81d8cf4c21b40ec75a2bd4a33632
MD5 9404ea339eb52553aa3fa3661e68fcc6
BLAKE2b-256 9ed577f6d7f64bc4cba3533c90147ba6315d93395f0a7302c1ed2b03f93565d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d62caeb4ee79167227cd1b483f47f79ea26ad5c82cdc2b22bdd834192f955e4c
MD5 4c9061bb888f3a47d6b2bd7eea011a98
BLAKE2b-256 bebfda6d8cc6aa7e0b609b0033757344bc4041b11986271b06c44296cc71434e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 71b8be51b8ce0861e003e16d70785f3a697f55df41facbaa0117ea77cdec15f1
MD5 f9cde073892e870ed056f9fdfdde58e1
BLAKE2b-256 7dce5558dc86f33e94a191f45cd54b1ed306a6aff9ffc7e86710a44ec9bd6bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63baba7065912b988dd0c4804b94ec8835834b50252581cd67fd872f2913bbc3
MD5 384e6aabb9cfa2fc75924627310b1ab1
BLAKE2b-256 81ddf9a0baec0264213481f5c7d8b2e05de8b848dc1e4f524dc871d8a7731087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 088224a6210c067f14835dfe12c4e20da0e834f197f117f23506aeec37bb6091
MD5 272ae61d67bf355b6ee4104b26448cea
BLAKE2b-256 e728987cb2fa97839a46ddd2846f51f37b0f34c8027c06923df6db9d92ba1fb7

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 4acbfb43be29ca0e9b40d41af163f5518ff01547f5c1cfb953a9aaaf3718e1cd
MD5 39df0c24ef1dc5bc6de0ae1258ba95c1
BLAKE2b-256 eccc80dca77eddfeb4cddb27fc7b8eb31f23d1d03a5f70e2b20982b1ffa2338d

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 967160937e406217391ad320608a55d5bcbbcc5a887a98f8d83b60b328bb2884
MD5 50618adf00b41bc77edd841aad8e8c82
BLAKE2b-256 e938c6d516df35b281f9bcb53552f05e379cfa1c5d594a31f27be116583b07e3

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 074422d6a5d207b395e1bc6b4d195860316926a0b97187c444e79e7bc370d95a
MD5 c3928c161e825d03c810d69c808e52f6
BLAKE2b-256 606df96825fc64f62ba6fb2d5eed39abfb895bb2ec98e73544264f3a4b7c52b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c0c97a54dd65cc4375efb7618161373c7df8e522327acfba878f120e2651ab86
MD5 a554832fd522dcd068fe16a7a632e88b
BLAKE2b-256 6a96b5947ca51a32852e385df2af1fc4f139c7428beabc6ee4690df65229e749

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ec270ae3f83d26b6abc83a0b6ef688dbcbc2811e4c48a2a06fdfe92697c41f26
MD5 5c738102290148f237dc791816b9eaad
BLAKE2b-256 d8f18e8e1382f5e519dbb46febbac0cf50f22ff0941ecfdaee7b393c9ecce5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76acf11fc106c1d208830c0ed14ca5858db7521ea525fe18b11fc2c499effb68
MD5 aaf1ca592fe308300fdc3f4450e12ce9
BLAKE2b-256 42cc8fb2655339af8ad85fefdc34b235b3731c38b76fe90450d1caa4a0b542a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c15631392171b4556265e9aad534902d3c0ee59b5caac4bdf89c463aebc5b1e6
MD5 b6bdb387a1ff2f375b06e81b02790f91
BLAKE2b-256 17b301ff449064eb7d8f8ea8b08adbb86758d058d8c7755681d03b232050bf61

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 06309b253441c2b17e108b9fcebdd89eec67dd9d0516206ca296dc4dcb25d9b2
MD5 827194c47040d818bb55e15b76345f0b
BLAKE2b-256 6d4d6e5e3f2b4011d25740915aa6c69848093736a82c9287e6dd5502d27af686

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.23.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 227f5eeb8030cad1558e0bd3d23c5b9f7fb78c27beec362347ed5c5a9e347abf
MD5 b776165b4ce8e752b1df11668e1f8c93
BLAKE2b-256 fc40f87fccff840e376f79b66aea35828b27d702f8d952ce2bc01253ab736732

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e65f70b79d65c1e60e4d94e7d0e942747d82ae7ca7cafb4b97d7167251c6f68b
MD5 9c24f00ab56bd0403d82227c97e081c1
BLAKE2b-256 b789f969e2c70380c10d7a32db47c1e76d7eba365ac7b8f74b6f907d2a042a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af2ec44fb2982aebeca4622c4edefe6a722bb3da681ae470590c846a8310b84c
MD5 18a23d8d0421402aed6b9e87b00d62cc
BLAKE2b-256 374e30568c2524372084ae57dcd9211f089243fa81d67ac90a5682b3ca4998a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee8d27fb6f89f1bb7b8fd1d2be840630fc713071b460ddaa5e3fcc4afb678c91
MD5 cded603ca334e41831fddd41125a5767
BLAKE2b-256 6f293c502f1a9a870bd579f938163d0c4beda70b4e05643bd529836b264e72ec

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp37-cp37m-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a219428f843049d077c8ec947a751e2ec5f2b25bdf4a0a2a3e435b4187589ad6
MD5 8075b18bfafb88a7167432328434b291
BLAKE2b-256 958a1fcad93619e2543f853b18d372c9117138ec39632d4daa813c20f2268992

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 17593d68075cf12de99d006763a1152980777b158797a7e32aba94f74fe667a1
MD5 cc0749d32d615196ffe8f8f2d30bd7b8
BLAKE2b-256 dbdf4c70b22fbaa089be7b6aa2369ae23e50d814cd4a5aaca20f0f939a616d60

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.23.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 65d1fef77b954f415380267b5102e5ea7b91d83a12d8536047ac4864f1e98f52
MD5 6473b9d1dc9baddad91b376b16cebb19
BLAKE2b-256 80ac10220fc7c675162544122dbf56e73b40b252c9a0b6e1b7aea0bf9ef5c6e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.23.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.9 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for depthai-2.23.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 00bead41636adefc4338c874c380826ee1cbadeb6a8fdbc678066a5f0732de39
MD5 f07fe6dbd917950a9837984f951b9183
BLAKE2b-256 81c1bf8602ef3ba2d2973ac7d162ad60568394898ce8d179e61459f50a0da5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43957a740cff1c65bce924ccfdd0a926bf57eac589905679126d5861c3be2222
MD5 94fa38d384a217f2296c7cfdba836908
BLAKE2b-256 50b9cdf1e97a79c8f2299760171abc52f4db42d57abf29e8df44a8dbf7469583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9084207d17e72a39c6b5991ab3e60296278ce9c7ac6961232f088ea9934558ff
MD5 fa00938b50ed7109848037bed2a3c15c
BLAKE2b-256 4f1ffd0070a0dd84ed2882318f20c8cfd3bcee751ece95524676b528a3c9f3ad

See more details on using hashes here.

File details

Details for the file depthai-2.23.0.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.23.0.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 852b576dfedebb0190bd2487529a1c96454d41b98fe075787d990e56aeb9cff0
MD5 41dc618f6654bcf1f9eb498c5ed1047b
BLAKE2b-256 730d86f5abaab690969bca4063fe7e5c782e5809a3bed1243577f04047cefee2

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