Skip to main content

DepthAI Python Library

License: MIT Python Wheel CI

Python bindings for C++ depthai-core library

Important — You’re viewing the v2.x.y branch. For the v3.x.y version which adds support for RVC4 devices the DepthAI Python bindings have been integrated directly into the depthai-core repository.

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

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.33.0.0.tar.gz (458.1 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.33.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp314-cp314-win_amd64.whl (11.6 MB view details)

Uploaded CPython 3.14Windows x86-64

depthai-2.33.0.0-cp314-cp314-win32.whl (11.1 MB view details)

Uploaded CPython 3.14Windows x86

depthai-2.33.0.0-cp314-cp314-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp314-cp314-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp314-cp314-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

depthai-2.33.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp313-cp313-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.13Windows x86-64

depthai-2.33.0.0-cp313-cp313-win32.whl (11.1 MB view details)

Uploaded CPython 3.13Windows x86

depthai-2.33.0.0-cp313-cp313-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp313-cp313-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp313-cp313-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

depthai-2.33.0.0-cp312-cp312-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.12Windows x86-64

depthai-2.33.0.0-cp312-cp312-win32.whl (11.1 MB view details)

Uploaded CPython 3.12Windows x86

depthai-2.33.0.0-cp312-cp312-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp312-cp312-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp312-cp312-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

depthai-2.33.0.0-cp311-cp311-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.11Windows x86-64

depthai-2.33.0.0-cp311-cp311-win32.whl (11.1 MB view details)

Uploaded CPython 3.11Windows x86

depthai-2.33.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp311-cp311-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp311-cp311-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

depthai-2.33.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl (13.2 MB view details)

Uploaded CPython 3.11

depthai-2.33.0.0-cp310-cp310-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.33.0.0-cp310-cp310-win32.whl (11.1 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.33.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp310-cp310-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp310-cp310-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

depthai-2.33.0.0-cp39-cp39-win_amd64.whl (11.5 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.33.0.0-cp39-cp39-win32.whl (11.1 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.33.0.0-cp39-cp39-manylinux_2_28_x86_64.whl (14.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

depthai-2.33.0.0-cp39-cp39-manylinux_2_28_aarch64.whl (14.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

depthai-2.33.0.0-cp39-cp39-macosx_11_0_arm64.whl (13.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

depthai-2.33.0.0-cp39-cp39-linux_armv6l.manylinux_2_31_armv7l.whl (11.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ ARMv7l

File details

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

File metadata

  • Download URL: depthai-2.33.0.0.tar.gz
  • Upload date:
  • Size: 458.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0.tar.gz
Algorithm Hash digest
SHA256 8778356ace4b6b0e38311fab62a627c7ff9c7c4d6f48980d901b18c27ce3f3cc
MD5 368d039048b8a8d29094d4121b27636b
BLAKE2b-256 1ba8d07359e546b65a58767b137a9b4c3113aaa5cf1eda188a8c8de04137a860

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f343bcb5460ce761250eaa65378bd2d131e5d056511a664f7261fa98d412e80e
MD5 318baa6cc0c7027cacd68452533cf2c5
BLAKE2b-256 82b5f574b2538ce2b994394370c96120fab6391a3f1ebf7d7be46db3caf6f7df

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e8cddb863ecc53b344358d3953ee3b330fbff44451e2a544f5a15a14c193165
MD5 430abc234e316fb5015d91c0ee380b02
BLAKE2b-256 d17c95a011d993c6f0f6b5e7f08730383fb68a8cc66a6cf42346d04e9cdab72f

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: depthai-2.33.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 15974206f06f158e5c5a04ca6eb8d08dc41f9778a69ba76df2160e7e3e81ec58
MD5 ae53835b5bcaf4f1ce8e33bf2ddd0fd6
BLAKE2b-256 c0ad3e82e5212154ed1a8cd573eceb8bcd9898e2afd805febbf2264753987ae3

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: depthai-2.33.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3386f25f6547e1c4cc2249248c347dca892ad8884958a69624bdbd74e411023a
MD5 166d19cda991a70474178aa562fb5c02
BLAKE2b-256 ed067ab7f0d367cb788d86df4ffa4e3ecae24813ca2401ba68478da2846ad2b4

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8180ec3a1927926fd488aec5c843b7313a50ecf38a73feb373964571c298401
MD5 18b3b68fba998640bc2cfd39b6cc1350
BLAKE2b-256 97da792289f2b5c48b3cd981fa78387e1d01886f65418dbc7ad461b4537dc67b

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 205303bf29814e9c8cb6298d3c17a9ab8eaea4f2d4f1e01b716648c3a299c24f
MD5 5c9f2a6c67ecde3d700e7861d814c71a
BLAKE2b-256 be6ea8494a597ae485d8121bd0e8ca3cfcd5417013497a910453224ba70efc8e

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 914356ee094b429fe14a4c08cf14a6e6765b4962728d18312d666ecc7d7ca126
MD5 2049e1de17da9f0bdeb78f47bd9d7373
BLAKE2b-256 bfab143d26486900a1a037b50d2ca70416ecb8e590745b3271d3e6b12ffcc25e

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8c46dc3f5c17c477d575a451161b17c80bb1a9beefcc3c6098c90764e8614e7
MD5 be3c876c1ec013bf28c1ad6371adcdaf
BLAKE2b-256 6d1edad090e84c099904e11cf364c5ad2af191823ba87f93dd4f06ab658a0e1d

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0b81c35e7e4ea5f557ca338057b4799a9368641ee2d4bf1745b15b465b4b852
MD5 d3ec7a72ceb67f311b85c1ff71359ef8
BLAKE2b-256 20d2cda654e5d32ceb90ac390068275437cae65fff0827169e21fc2be39b251b

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: depthai-2.33.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d223ca4b0061e3bc1d44aa596bb56164817abf63292fecb342592787e5b48497
MD5 0b79076dc20423f44f85bb8aac40fd47
BLAKE2b-256 c8224a9be1099c4dedcbc958ca58535d6ee5cfdff48e71578c528313ef95a219

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: depthai-2.33.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 40f4af71ef70ea3ac427d36517bc5950c8d8aa9e147f02e6a9a1678fffefe5d5
MD5 3aeeae50edb5f4ce17cda682289aaba5
BLAKE2b-256 8f98aff35268587c21eff01ae8c73c050420c6e99fa025fa8074d2d494db65dd

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc5f6a86c20fa9a1e0cfc595edd6d5df4e0135b0f168d57e709b99bf92238731
MD5 7db273aed0fff343b008fe70a2df34f1
BLAKE2b-256 1a87d017d322d827a5adb06bf591dd6ab89db42c51c24db36b0642ebf2747112

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53692afd88e9f77d1382e7b04511126cd725debb974e6adf092d613bbcad4357
MD5 eafd81ef746bae44c32c43c1a944f897
BLAKE2b-256 37a5f5dab84fcbc54f1c78fae275067ba0b41b4c550698291d512647ac0bbd3e

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f412527fea4357f5155304d061c210e9eebbdeb09dd93ef14244c2711291acd9
MD5 578221856029f408ee6b9aec84e9a61c
BLAKE2b-256 e21262542103755153ef2c11155855d53e5648eb09418b50ee0a09f120bc917e

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: depthai-2.33.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e76cf9b30e2d3e37e3c911af3d0708b823e1357a5cd226f3ded7e4bb96e2c8a7
MD5 0c2c7245a7c34f4d014944c5ea16b079
BLAKE2b-256 65fe2a6b0f80691eb734ddb31b98e1efdbf25f8982ad506c88cbe47e6930019b

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: depthai-2.33.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cd9bce32444dfd9174470ceb7100835ed954e767592c174e190d86209e7c7b87
MD5 4504e772eafd408b8276a2ba4e71cdd9
BLAKE2b-256 4d7c5c4efe065408d5bf6383260508e347d2dac0a05090cbf7f6f5d71d90fb9e

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7705c43451b9d2152f292138ac887d75dd0de596cbd581b8543e0d97cdea45b
MD5 e63ba6070bff418612352f3e654e70d8
BLAKE2b-256 30f67b6c3ee26452a1316ff3e48d04298f900dec67fe933e116706fb3ec6e4e8

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d678cbbe0d1885c4ccf45a96e0ea4b60bbe878b425c6e422e8773e9099fc31a
MD5 24cb054d66ff4486369897d0a66718eb
BLAKE2b-256 407b6519544c2a4a3df394a3a9a92a1d414b77185bd7c61b549bdd040a1297da

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 076854511c1756e3815c45fb6fb966a7f33f286fc60cbec3b505970a1bb4d696
MD5 22b143fd87cf70453a0ccf3209938698
BLAKE2b-256 b9829650bb6afcddab8ec717041f36faf2c1b16e78fa06857257a35819997a52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.33.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b9a25d987e36b039ae6ac6cecf80351770f87129de95e8e90fb4d36e9fe1c909
MD5 3a06bea26461e40c6a854e114d41c706
BLAKE2b-256 7135627583bd06f465944da442f5fdeff152dc97d030690bd9575fed381b773e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.33.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 489587a5443328d74cb9be22230faee33ec438b80a51b20b801ef9aa2351d66e
MD5 f3be3bbd610e32440a14117b43139a50
BLAKE2b-256 3a2d1274ea293e6e200cc18334becc60c659b6a050b0e3816946a982e554b9f5

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 367503dcc21036218a85b6e033c2260a2a261b284e4750f198613d79f6a71076
MD5 cbcf3e6f4e4c6c60fbe93d1abc9ecf7b
BLAKE2b-256 36764c4fd74e4204a26d96c23d5868adb58410d6a356f2a97db22394d5ab39e1

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9fffc269cb52649955c6d6275ed464ecd9b0e55b0db63ed419a2b387d606cb8
MD5 e15ba6f9d06dacbb63bb5ebe4cc57c0c
BLAKE2b-256 c363a2d2a422492fe8fdad96181e76b4b4978c035893f4a5bca8802c30c86251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f3f046d2c55bafd8d2aac283bc473fe0d29af065e0d0e1a68b301d355c73ccd
MD5 e1f7a9b4595a2df3481c820f397c1d97
BLAKE2b-256 bfb56489cdb5f69540267c35c8cb507e6cd277359f1acd2e44ed0c663ade0052

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 707a9ce6cf86cda27fbd53f0a015b0f80696d33abce57c43787715a35c149289
MD5 966bee72b2540b40b6e1cd8a771f3a5f
BLAKE2b-256 3e0f8eeaa625541868d5af8fae7c131bd5486ccef5105ed84c0877b608f161ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.33.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ecab1f33cba25cf8c3b494403af68d67fde6f43e242bd39d7abeb804ee1f593
MD5 1a67e753dda17fb55d6d1a8d3eaf12d9
BLAKE2b-256 986feb9817c3f0c966c055e099d29d08b88ee279ccb59004da0db2199c2f530f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.33.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 44e95bc41cb7191a72461238109143f47e771f3968e8d9c86f0825dd12d4130b
MD5 aada9801209bc25759412cbe543c5aa5
BLAKE2b-256 5ef2cf0ec3f2b9e5818b6eac520845579cfa9466b0d4867f63e2ce12638fd925

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d99df0f8d93ce5acff61ba96dbc30134b48a1b8730f030cdbcf6d0173e564a9
MD5 f6fe60317d254d7c1355990c4b6c82d3
BLAKE2b-256 dbe0d7b06a187af5ba9cdb1d70cfe0d266e8279e2d8828625df0b18f0c700185

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 557dbe722d5fb965c9878c9cfa5702ba2eee1da93f4cf756e9d83652d3ea8fda
MD5 8c74d53212513839350eb3e42d82dd28
BLAKE2b-256 87e85663316175685c00386d8aac9917153e1261745ab8919a98184bd2eb99c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89e81e844ebec9f2c0179030daece0533d0cdad435614b37abad6f155bed1d1f
MD5 70ea710538ff598f37e9731b065ac603
BLAKE2b-256 510484ebadf58edc5c63e4ec63bbf4475b46b8a1bac18f1c1bde75aaa1a9f25f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.33.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6fc45fb265e242cd0970bda215dfc66d60ed02d8272293299aa56cc6899f0876
MD5 570dd335a8dfec528ff8360c8a9a0139
BLAKE2b-256 85261bb93df61e394d1268d230bd8eb10ea8a89e8c7fb54162a5302594f06d2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.33.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.33.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 63153278c9789c178fe4b68018035e1e18b9421018e19d2e5e98e633225683ae
MD5 dc8ea67445a34413b17617f8c147c3f2
BLAKE2b-256 a40907e5b40345fee91857ab9c26c8c8255deeb9b5b091ce36b24cc7a8aaafff

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5c9c50c3d586e5fda868a1c4db2b151739c812b1ff1abc8e585d74f64b72520b
MD5 07bf531573e0bb4302d410988c3a996c
BLAKE2b-256 6302060be5f8016d5da2838c72f32e774b304b0e2f79fd826f2506e7965f7ad2

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3e09f9f49a20252fd3b0b3d368202118e38b9667bf6ba7bfa8f217254f3ca91
MD5 f6485812fa2ba8f0f82c25bdd83fac80
BLAKE2b-256 e2bbd185e19ba320fa110cb9636ebb36c43271e066ecdf52fd69d0804b068ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d526c09d2b31fe964a4885763faf8152be58c5cbfcb4b65b20f4f5a8a0a737df
MD5 f375e76162be584fe1768972ebb59090
BLAKE2b-256 17b9da3af05e5decad4c3bff08d233fc58e36c8dc754c94090d8222984674721

See more details on using hashes here.

File details

Details for the file depthai-2.33.0.0-cp39-cp39-linux_armv6l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.33.0.0-cp39-cp39-linux_armv6l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 516caead6c797bb824e1d75e3135e5dfd4a8b43e9105049f17e03f6347b68148
MD5 97e3da8f472de67764bda32851beb6f3
BLAKE2b-256 afe1248036eed49c2043804ad4ab0277aa1783a551bb63442595c8f715ac68e3

See more details on using hashes here.

Release history Release notifications | RSS feed

3.10.0

5 files

3.9.0

5 files

3.8.0

5 files

3.7.1

5 files

3.6.1

5 files

3.5.0

5 files

3.4.0

5 files

3.3.0

5 files

3.2.1

5 files

3.2.0

5 files

3.1.0

5 files

3.0.0

8 files

This release

2.33.0.0 This release

37 files

2.32.0.0

37 files

2.31.1.0

37 files

2.31.0.0

43 files

2.30.0.0

45 files

2.29.0.0

46 files

2.28.0.0

38 files

2.27.0.0

38 files

2.26.0.0

37 files

2.25.1.0

43 files

2.25.0.0

43 files

2.24.0.0

36 files

2.23.0.0

36 files

2.22.0.0

39 files

2.21.2.0

36 files

2.20.2.0

36 files

2.19.1.0

36 files

2.19.0.0

36 files

2.18.0.0

30 files

2.17.4.0

30 files

2.17.3.1

30 files

2.17.3.0

28 files

2.17.2.0

28 files

2.17.1.0

28 files

2.17.0.0

28 files

2.16.0.0

28 files

2.15.5.1

28 files

2.15.5.0

28 files

2.15.4.0

28 files

2.15.3.0

28 files

2.15.2.0

28 files

2.15.1.0

28 files

2.15.0.0

28 files

2.14.1.0

28 files

2.14.0.0

28 files

2.13.3.0

28 files

2.13.2.0

27 files

2.13.1.0

27 files

2.13.0.0

27 files

2.12.0.0

27 files

2.11.1.1

27 files

2.11.1.0

27 files

2.11.0.0

27 files

2.10.0.0

27 files

2.9.0.0

27 files

2.8.0.0

27 files

2.7.2.0

27 files

2.7.1.0

27 files

2.7.0.0

27 files

2.6.0.0

27 files

2.5.0.0

27 files

2.4.0.0

27 files

2.3.0.0

27 files

2.2.1.0

27 files

2.2.0.0

27 files

2.1.0.0

27 files

2.0.0.1

22 files

2.0.0.0

22 files

1.0.0.0

19 files

0.4.1.1

19 files

0.4.0.0

19 files

0.3.0.0

15 files

0.2.0.1

15 files

0.2.0.0

10 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page