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


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.30.0.0.tar.gz (454.0 kB view details)

Uploaded Source

Built Distributions

depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

depthai-2.30.0.0-cp313-cp313-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.13Windows x86-64

depthai-2.30.0.0-cp313-cp313-win32.whl (10.9 MB view details)

Uploaded CPython 3.13Windows x86

depthai-2.30.0.0-cp313-cp313-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp313-cp313-manylinux_2_28_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

depthai-2.30.0.0-cp313-cp313-macosx_11_0_arm64.whl (12.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

depthai-2.30.0.0-cp313-cp313-macosx_10_13_universal2.whl (13.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

depthai-2.30.0.0-cp312-cp312-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.12Windows x86-64

depthai-2.30.0.0-cp312-cp312-win32.whl (10.9 MB view details)

Uploaded CPython 3.12Windows x86

depthai-2.30.0.0-cp312-cp312-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp312-cp312-manylinux_2_28_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

depthai-2.30.0.0-cp312-cp312-macosx_11_0_arm64.whl (12.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

depthai-2.30.0.0-cp312-cp312-macosx_10_13_universal2.whl (13.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

depthai-2.30.0.0-cp311-cp311-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.11Windows x86-64

depthai-2.30.0.0-cp311-cp311-win32.whl (10.9 MB view details)

Uploaded CPython 3.11Windows x86

depthai-2.30.0.0-cp311-cp311-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp311-cp311-manylinux_2_28_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

depthai-2.30.0.0-cp311-cp311-macosx_11_0_arm64.whl (12.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

depthai-2.30.0.0-cp311-cp311-macosx_10_9_universal2.whl (13.3 MB view details)

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

depthai-2.30.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl (12.8 MB view details)

Uploaded CPython 3.11

depthai-2.30.0.0-cp310-cp310-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.30.0.0-cp310-cp310-win32.whl (10.9 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.30.0.0-cp310-cp310-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp310-cp310-manylinux_2_28_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

depthai-2.30.0.0-cp310-cp310-macosx_13_0_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

depthai-2.30.0.0-cp310-cp310-macosx_11_0_arm64.whl (12.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

depthai-2.30.0.0-cp39-cp39-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.30.0.0-cp39-cp39-win32.whl (10.9 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.30.0.0-cp39-cp39-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp39-cp39-manylinux_2_28_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

depthai-2.30.0.0-cp39-cp39-macosx_13_0_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

depthai-2.30.0.0-cp39-cp39-macosx_11_0_arm64.whl (12.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

depthai-2.30.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl (12.8 MB view details)

Uploaded CPython 3.9

depthai-2.30.0.0-cp38-cp38-win_amd64.whl (11.2 MB view details)

Uploaded CPython 3.8Windows x86-64

depthai-2.30.0.0-cp38-cp38-win32.whl (10.9 MB view details)

Uploaded CPython 3.8Windows x86

depthai-2.30.0.0-cp38-cp38-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp38-cp38-manylinux_2_28_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

depthai-2.30.0.0-cp38-cp38-macosx_13_0_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.8macOS 13.0+ x86-64

depthai-2.30.0.0-cp38-cp38-macosx_11_0_arm64.whl (12.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

depthai-2.30.0.0-cp37-cp37m-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

depthai-2.30.0.0-cp37-cp37m-win32.whl (10.8 MB view details)

Uploaded CPython 3.7mWindows x86

depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ x86-64

depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ ARM64

File details

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

File metadata

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

File hashes

Hashes for depthai-2.30.0.0.tar.gz
Algorithm Hash digest
SHA256 6f1de5abdca2a615eb29803d82a002da42ebf1d3c6d261187762f0dcc5b2a836
MD5 b6d82ff60d40db9e5ce6edf8a740f195
BLAKE2b-256 e1545b056e10555acadf356a1480639a85327606e5c90f6ace3d1f57ad25111c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8c14045e7c5e313b134cc3c10320dad2dda8815f4f2ea9b1c72dc36981f6b71b
MD5 89d4c7f2910a49b381e028a2afb8d718
BLAKE2b-256 2c23247e948204e8f1b60c427675f4e6c945456615986eca8970603df53fd115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f8261bec4ebb747c6e2c20dc1adc7c86a9025c2a36e16c0adfad468ee86d41d
MD5 aada62dc59d50743347cad0d7d81ca4e
BLAKE2b-256 7cab4f309c326f83b0b4ef6efbceb601bfca20e7cf61dfe3a8a28f819b95e889

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.2 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.30.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d2f78457f8df21d8b21fff4c9cecc40b7925cae617be8fe9d8e4bcb1a01fd329
MD5 c8fb6b6271dcce372fc6aaa5f6134dc8
BLAKE2b-256 ce89dbcf8568d9bb103975cafd16a6560d0534182404bd29551ad05bcd78df06

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 10.9 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.30.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e98806b3a50322ae7bcea3e0bc085b8ede398e230af2b92f6a81cb5e60c5e4e1
MD5 60425cbbf4d1603cab516f017ab37ce6
BLAKE2b-256 8cf6d9a2b7f68b61f3e424b36d781c1be46944b4cd5376f8e5c076e9f3ae6274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b2ae397de204ba84d00a26a241c94d1c3fbed31386f22ab6fadcd35a74aee347
MD5 45c527e38b6d28529e6bc0df97c4e92c
BLAKE2b-256 43f268adcb44aca0adc2b15e526665e501997cdde6a236cc60561061ba1de196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5675545d9b354d1c51e902cc08d39649fe1a1c2fbe59bc411424687ab5e245da
MD5 fbfd5e7698d18c34859a23d661cfd2f3
BLAKE2b-256 962895f226d1232fc13f139a15399d4e64c443ea96cb25819f5266d0e0d43830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 278272edbab1437217db633c71f2c2c90ec2b76f20c9c6ee9f6664342f7609eb
MD5 c5b444f7bdb919b9c988efd3c4896c53
BLAKE2b-256 f65e06d373253afddad54100e31e20fe1c066bbec11294478c9b75ff4c26ec97

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 869668afb027cfe2c14ca2b81e39a29769846d8e8e7c4b7cbd40a4a261773b1c
MD5 3f57327293dd0cb6f493f9281a756194
BLAKE2b-256 dc91ce13af2e6b47a5ae36b792167d6ae948c59cd9baa815e811b4f40c94fad5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.2 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.30.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 850870777c53a332dba50187d5ddbb929c95e7a100730ccedf7b58ae32c70638
MD5 2127cc3ebbc6673aa62cacb971a8cead
BLAKE2b-256 5465f2d44dc3adc7bef142c721ced1f23229a26925773bac7840b86c9776e4e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 10.9 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.30.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9bf3eff22d2dc2255a442c2ef6c4aa140789641639dc1f83d211eaada686dd98
MD5 927c198da990b4d5863dd0aedc9bf62a
BLAKE2b-256 15884eed0edb00cbff7de01ae2c4b4e4250f125a5db340a9b3b3a37edc3bd756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4eb4789b8d49e1bdeaedb215f24282924e0634813802c0ea9e599a9c639b492
MD5 b13741b779799090112d17083175a7c6
BLAKE2b-256 4bd446c27563ff5f232d56d3c803aa026dcb7e694098a31ec100c266c62cccdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d95531ff0d70720aee7f5de1f698570b6a8b1cbd7b1b79efabd88c49d57868df
MD5 f500e0bea56ba631af7dbda2cee08789
BLAKE2b-256 ea9720465aac9e8baed73c9ad9b01bab24f16183c995bfa04626feb8a6666fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa54948e78f51495301dd131284b125d0023b0235433735e75281dfc42fdc3f7
MD5 ccd420a30b4579b5eb8052113688d9ea
BLAKE2b-256 9735aed4335d9a17d5e8f21f7fe6d8d7f0098bab955f2e6331b8e203d873c527

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 af64afc5a4f2bed7259df478f971afbae3ce3542567e759065cc35d1e9520c08
MD5 628ecb9434c590ac6a7b00f64f3b0211
BLAKE2b-256 7bd5af052d03760fa3fd3bc3492dd144d5d0df708cb53fdc09d239e4d4e4097e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.2 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.30.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 06d68545eb55abf342a6d0c5df6ed9a16bbaabffaff28800ee8e61895d191028
MD5 c021bdb0de59629b244d5df0339813b3
BLAKE2b-256 6a2e83071a3c2159e9b20b7ab217b4cd08efacdb0a115f49b98942b69e346b17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 10.9 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.30.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1a2367fdd023d3af01aa67683b6cafc3c53dbb6bcc79ccc234912c69bca51c7d
MD5 5693a043876038f628d50a2d6de1443d
BLAKE2b-256 4ff2314286e4bb09104315b41bc9c4cb62d7f319c7b62389b7771edbddaee6c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7c36e9d552049a6d333022234a031a336d8a49aeb51cad667a805eb9fa4bad8
MD5 acf43637a2987cfbf782d63b623fdcfa
BLAKE2b-256 1f69d37a19f4502a672d8e1a5d41e105f05b11db96ceea2e928a942b32b1c87d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28750c2b856120e27df8088ad826b856f64cde42bbf3b7f341e31bfbbe15521c
MD5 28dd0fc61947b4cec13f0eaf01b20d02
BLAKE2b-256 db3b93941aab97aa8deef759a12254bd218da442afb4fa129712736da4d963d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e929ad152e5f492087d078471211da92fc9835274fe22569cf0b99437198766
MD5 fd009979431dda104c0638458dca80db
BLAKE2b-256 84042250694f9ef3bf137938365ba5e6f8461ec8fabedcad787cd84bbc330733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c228b4babcc54decf7238d066650d1ab3085dc350c80edb4217edd61867f8f61
MD5 2a356e9b0f9fa0fa147521c3b05b8950
BLAKE2b-256 aacc87547b22a7dd53f872862b446547c9d7dc460baf4eebbdec46481ff51569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 d3199fb8a493349cc3f800a8529947aa3206f9cab75554f17ff0eab3a3f3f07f
MD5 b2344daa8ffa35be95fe7762f6932e32
BLAKE2b-256 b3fee1d112e6c8c28b40cd3ed104e59dcc18169648de28bdf29f39fd56b92819

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.2 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.30.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f1238e7bb90339a110f48863052dc2a1d3500bd86d4fe053ffa48f58890c840
MD5 06c1856e06ed34709b2f8633d88eebf3
BLAKE2b-256 f631f014704927c1766d3cf2046e0232cabe7e00f745462df542165702e4e06c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.9 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.30.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e32f4d74caa70fbfabf956ba6a059e47918c890c3a009ebc6f69af5da1ac0ba
MD5 8f8ea51c4f6e2dbf0aaeb7de97ca0ffb
BLAKE2b-256 2519774d30555ff1e0c15eadc5c6a215bded89429ea6f7f8ce3726dda40e0c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3bb410e84fa882afe26626c3966f2451faff545e340323bd1ec643f1f1ea8d7
MD5 1a91b1cdf584246dcc9b53e3a7928d3c
BLAKE2b-256 592e441f474157a09d1e127e7b0b85986eb91f1db1cdd63d2b8c89b8f1d0415f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a185107326570cf2681a42bb6a3d952b58813a9e76308c6649ddb40ace79f0e
MD5 42ffbde724a076cce32795f42d91a5f8
BLAKE2b-256 8b5a463ee9975a1cdbc3094a6620996e1e170df3c2c561d88e2ebdbc17761c53

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 dce435678ba01c4396cd9adfdfef7fabeb7c598abcccee0cfe18cf2817f36525
MD5 6d82709c11ecf5389454330308d055a8
BLAKE2b-256 874dfe2085af19c6019bda502b30a60ee1daf82baf29688d8a2a8889e7c03ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e8f2fb002a95395c398f1c843cf761425b98619737c6c088b110f72382a3597
MD5 d6d2c377279074c60d81565e1116b7c5
BLAKE2b-256 b0a089c977958d6f5b5027e7ac1afb69aa49294a0cf842f6cc6016ec6ca6cf0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.2 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.30.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 652d22ce0b444e66f6a29c2278f39adee609027aa4f2b510d56b103072ee6d39
MD5 507977b6f7eda9f9217340f53434b4e5
BLAKE2b-256 5545a0bb8b45896fe0e6bde830246d0c723ad78fcfbba5e9e2c82be00d16bf9b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.9 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.30.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 958145520f5b7ff31eb9913a5e41f007be6440424e606e1d4292e9e41ea956ff
MD5 f9124ba11410cb1d13aa8e13d3fbe28c
BLAKE2b-256 0c6e97ba0064e85cc009c797fcee46043c433bcb954d442ed840d65529ac0380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6d533f75d1c5eebea468f7418d6a88ee1fb8c6f497cf854195540fe49961006
MD5 690212893d1226be86b8c14b91e8c374
BLAKE2b-256 f02f7cfc7f0150a8c6b05681c9bff1a9d7d5ab2f49758adc21c2a7e76479a2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c32e96fd146ee7f721238c724f5ea2269f1c3596f2875a9cb781cbb7fd91139c
MD5 83075c1fd2961508b5e10c9b37767b6d
BLAKE2b-256 73255f7060f185f7021df47209e2aed11132ec8e9b7b5349aad0ba9c7b8bad1d

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 a9a2952d2a428242451c58107d378a0ec6ff066ff6006d9684e26634c7bc3e13
MD5 d5ad6f749ebbe37634c6ce27cd3a9baa
BLAKE2b-256 644464ce3f6c4dc84c36e3a672e49d56ca8a4a1e3dc5b0055c5f3800944758c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6f7c7191284ef768ff99b484eb29acf8c9c110c0efa750de43a3ccbe1685e0d
MD5 2fc3b87ded9256bda9046b2b680a8938
BLAKE2b-256 c6de430d1e3d22a32563400d8b27b29cd679eb4b869e13df094f27487d228a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 9a4695fe97d5bd63df474157acb01359d9e4b68f896cd5a19c9a56ba18892f88
MD5 86c87a059b86264cdb576bc66008b55b
BLAKE2b-256 daca629743a0f680ceffc559d25dd3f600e06eefb0f78045dd34bec452d5c25a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.30.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cdadc4bd77745d995872bddfc64cae2c3949e3395aa2fb7ac54695ffb0061a56
MD5 a07eb671cea25ff59235f1619400a06b
BLAKE2b-256 510d96cb6d5c0865a331b7cf0c9a455815778eb118fde23e5fce61054bb9d70d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.9 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.30.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ca1b28913366d5b6d5300df4e64e150c38c2df482ad6e442413c376cb8f2ef94
MD5 7607972d3ec545603fa0de1a9d75aa74
BLAKE2b-256 9164e229db56ee41f2d842a84bcddaf0f674dec0775fbcedc91672ec054733a4

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp38-cp38-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp38-cp38-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ffe33ffd4811dcb9f2c8470045822d877a5c9391fe6bda839741eaf46b49f30
MD5 c7f6874d1d3e90ef83d348f8e15dd5dc
BLAKE2b-256 c688f81b909241adbc0f45a650682e62d20e8c04bb426f964961af90c3b73048

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5fc85a92ed17397b5a7a02d01b5b737fa0a434e94540691b16142db0a886315
MD5 39312e2bece6f445e7da201eb37d5858
BLAKE2b-256 15fc7cf23d82ccbd72cd064fa50f3f14cc80ae7878fee9098877b3a9281709be

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp38-cp38-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp38-cp38-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 181d9f76332b2c28f4746ca7f89962fdbe149682082e99d643197dbb7db7e852
MD5 3f6265882d5555eec7e4b00a274b8983
BLAKE2b-256 e09816382dd7f57270abd033b155a0eb28d23dc45f1063548e771fa99b536b97

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c29cc7908afda2b85e8b1575f858ad99f840e8e8da768e703f344e084d9d7cbe
MD5 c642cdd292727ea1f48da5892b951d86
BLAKE2b-256 057014dd0354de9cbc691a49668ccd990b1f3768bb31260b1d4acc9a91bc2cee

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.30.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ae0e6bf1980c1dea3dee1f523d8463edc1adbb182ea361fcf291696513ff332b
MD5 6168073f0e730d7594874a91883e29cf
BLAKE2b-256 5cf8bc5eb0bbfec0fabdb111b74eff70bfb79ba2839c9af28f6f80d24197ffa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.30.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.3

File hashes

Hashes for depthai-2.30.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f359b2145c142ca82ca6150e661eb920eb5dcb32eda3024a06413396a0a68804
MD5 e664a85aa38f310b59191dc090821b53
BLAKE2b-256 c0aeb386dd1ea142143c01271028c4c30c22d5dd35023657b050f7dadf11738e

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25bfbef885a63728d96e0cb4e0243ea04e70835c0194cd8b3ae9ad91fd1889aa
MD5 fc62e4b77970c62809e8b8d7e85321b3
BLAKE2b-256 d2ea22fbc451da8055a32cb049e59282c04200d5259787c8a0fb000e21b8bfda

See more details on using hashes here.

File details

Details for the file depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.30.0.0-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfe84fcd877c0d49ce560fb227edeb528b87134ab1afdc48e6ff1c9c5fc2647d
MD5 334dbd9d0e4a1e96a678a7bc3fff95fa
BLAKE2b-256 5efdd6f76c51efea73dcd52c7cad792ee83e9f7507f2ecae062a9de4d1969118

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page