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.24.0.0.tar.gz (434.0 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.24.0.0-cp311-cp311-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.11Windows x86-64

depthai-2.24.0.0-cp311-cp311-win32.whl (10.1 MB view details)

Uploaded CPython 3.11Windows x86

depthai-2.24.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

depthai-2.24.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

depthai-2.24.0.0-cp311-cp311-macosx_11_0_arm64.whl (10.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

depthai-2.24.0.0-cp311-cp311-macosx_10_9_universal2.whl (10.9 MB view details)

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

depthai-2.24.0.0-cp310-cp310-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.24.0.0-cp310-cp310-win32.whl (10.1 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.24.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

depthai-2.24.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

depthai-2.24.0.0-cp310-cp310-macosx_11_0_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

depthai-2.24.0.0-cp310-cp310-macosx_11_0_arm64.whl (10.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

depthai-2.24.0.0-cp39-cp39-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.24.0.0-cp39-cp39-win32.whl (10.1 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.24.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

depthai-2.24.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

depthai-2.24.0.0-cp39-cp39-macosx_11_0_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

depthai-2.24.0.0-cp39-cp39-macosx_11_0_arm64.whl (10.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

depthai-2.24.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl (12.2 MB view details)

Uploaded CPython 3.9

depthai-2.24.0.0-cp38-cp38-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.8Windows x86-64

depthai-2.24.0.0-cp38-cp38-win32.whl (10.1 MB view details)

Uploaded CPython 3.8Windows x86

depthai-2.24.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

depthai-2.24.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

depthai-2.24.0.0-cp38-cp38-macosx_11_0_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

depthai-2.24.0.0-cp37-cp37m-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

depthai-2.24.0.0-cp37-cp37m-win32.whl (10.1 MB view details)

Uploaded CPython 3.7mWindows x86

depthai-2.24.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

depthai-2.24.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

depthai-2.24.0.0-cp37-cp37m-macosx_11_0_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

depthai-2.24.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl (11.9 MB view details)

Uploaded CPython 3.7m

depthai-2.24.0.0-cp36-cp36m-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.6mWindows x86-64

depthai-2.24.0.0-cp36-cp36m-win32.whl (10.1 MB view details)

Uploaded CPython 3.6mWindows x86

depthai-2.24.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

depthai-2.24.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

depthai-2.24.0.0-cp36-cp36m-macosx_10_14_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for depthai-2.24.0.0.tar.gz
Algorithm Hash digest
SHA256 e9e8edccb2dba398054604f04f6df2cedde4d2e0b42a7e24966bd1b4771afef4
MD5 42b0735043daa43f255c1ed9987b9194
BLAKE2b-256 ce1efb8cd468d2a2cd782c6040bd86c5d6069343d6cafe1499ce69ef4b8ac77a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.4 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.24.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2e2328d5652171251d7fe247ab1054c7b8a4b7115741a928524dcc1ca8ca1b3b
MD5 76ee798ebc8e62476301cdf0b22f0fa5
BLAKE2b-256 7dde0f18d96df3ebdf95fa27691832e58f5112e6e06736f349d438bcc59b177e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 10.1 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.24.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ec7d5191ce41e25f6848cc7c15caf2c861b25a2fb89ff7071ecfc0e82b0dada5
MD5 2f9379c1171513c2aa8354152fe63d5f
BLAKE2b-256 dbba2d2fcd4b505e36a23219498b700d0782da4bdda8ee9b0c5d12b3c5533956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f44e7d6c34a74d8d632428fdd8c0f9c43c925b8d0eaa4b8edaac6c792185b3ef
MD5 311143e0f15f91d0d04869969b776c0e
BLAKE2b-256 a6b9a1284c02c23b219ffc68544666accc87916e7595a706cf6ecd5eaad508d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60ae4fdd7dabd8c99d95ab74fb54249f0ac4cc9c311c88991b1225b527381eac
MD5 5776a6a76b740248a0d171c4454f0bda
BLAKE2b-256 0974193c46f13951c678460c0480d93178665aeb3afac11c5c75270f8ab6b7f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d4b17bf12206d1da79eb17c97d1fb545b0c9b254b2996e91066ee5299e3c22c
MD5 bc18972eba8686cfc9353ff6fad44fa9
BLAKE2b-256 afa89fef20a12ff369f793eb4fe9adf1feb563406ef7be021ee76d142b6bc2ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2e129adaab6f8146963a3605c7bbfc8ba4be5f6b40cbc7f7d4862d7be97b0299
MD5 ea59103a909e48d657029bc7ed407b45
BLAKE2b-256 378b917db5712d0303f71e246ab73054aa3ba5517c24755502382ff485d302da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.4 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.24.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 03bbc9d52fc1e2c0da4c9ccb6907487763409e920e493b70e1192786ca53f8fd
MD5 f2a4708b68aeb32fbe3a8f360cfee482
BLAKE2b-256 6732f807b3d7133ea0de250cfaca80e7a418fe6da4730b537306e085c80abdae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.1 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.24.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b475cf70025295eae07f4d053aecb5c419e3ff085b231a804f14229e8d389fd0
MD5 38e1002a3ff2d0d09787bc57ae8583d4
BLAKE2b-256 90e874f1e43ec202e5f1fd6af5a60d37792afa738db8e4355520a50170d3d01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecd13aaacf623262e92fa48689e99e2521df47d6761263cc4464d4e59fb0a5b8
MD5 9af41b73d99d603375056ff9b0a42437
BLAKE2b-256 fc427e39f14abdc4a675d1b31ce6178e17671f884cf84b2b3b7e25ceaf76e04a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4afd7de6803f3933a5716fc4fc4790d3196d086754db2885f5c5f0a66c398fc
MD5 5c804c7fa663a546b7354e3ac4a39e02
BLAKE2b-256 7d30ac58cd54db2085b8ba71a95b9cf87127e132e0e9e58c1e8615e164707738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 3a005ba4251f990d62afa44497541e7a1fe2a634d4fe789b834b0e3d3c2a09a2
MD5 da4a146482938b2bc4841c9d952a7071
BLAKE2b-256 e6b091ea177a5f83decb120ab5449ae803f421fbd72cdc9fd4eb1f3f565ca373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf9ccb3794aca724742043298da29a42a307d7efea4d654b66ceb3e4cbbde159
MD5 a047eff42b875ea140da83f815e2ef44
BLAKE2b-256 07cc23fc1bfdd2c61462f83aae0e54ec8a21ed63ddf1ec552d48fa81020387c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.4 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.24.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a30f717bf8b482d77809c3dad06854c630a754dc626d54d7ceeb97d96f56faa
MD5 9de3e87c43b1c53b743c3f33c736a6b5
BLAKE2b-256 4aba08a5c0e0e2ff6c1192812ada072ceb7454667c197a9c776e9d593f59abfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.1 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.24.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fec553390363fea1799766270d1e4c3952ea1f927303e26d6da453ca84bfece3
MD5 3b83723e3a416c5435a8f0c82b74d320
BLAKE2b-256 226c835f1e39ce54fa516dbc7531d01c1be4e970d3f3b16238d5b68feae09401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54bac92cbc68c00b554aeafc667153f6e0ab42c5acc3566235237fc6762c420b
MD5 500ecaa842b304b4a6c300409902d619
BLAKE2b-256 24b7bbaf4a8fc6e13de62d5795577811a41acbbe44e7ea5b6b162bc5fc377a7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6895f8b62a24778703995916b1adb9fa70b12d7f270b7444789873f46f1e7699
MD5 c6615c9248faa2348e977c0fad83dbce
BLAKE2b-256 710a96bbb66102851065a40e661ffc5b0c83f5d406f133544c45c66d9fe574e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7493c0b220371ad5cb72786730c5d01abad79e18cdaf4a844fa5a6353d3d3b27
MD5 28b4133032ed6b8ef8ff617c329658a3
BLAKE2b-256 60404102f6d66028d0d6a49b6bc0e352d38034dba25d10a872810e52773a37ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32ab9174cd790db951399b841e8efe671d2dbb89ea8332920a82d314667f008f
MD5 6951134de55ef559be9313b661efa5aa
BLAKE2b-256 158379c836c7f0094a94ab8aa77898359a79b24939ba3b16d9b77b59c29f352c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 6ab05411fbc69b14b8399697b310bf7cec6f421e9317838489de97e7b986217b
MD5 f7b95b53c289454210f9ca48ba7ef371
BLAKE2b-256 f9fe4abad72c7a897eb7223c3e4539dce5de30af8ca0aba0fd65da050c43e264

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.4 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.24.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ab19b5c94396ee1fd36db38a7d1150a48864444adc59c3f678857db456a581f7
MD5 8af97f5640009a874c2e6b2b12c0b80b
BLAKE2b-256 3c64891e4f5e634505eed93d8b552e51dbcaf3aee29aef4f00ac81e67df13fbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.1 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.24.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 74a8830df76251c0f5cd0c110e36d24e59271547ce8ecbbe632e5581c3f695ed
MD5 ad14bbe1034339c2e834f2d731d64bc0
BLAKE2b-256 ec499042e4f4bb6cf1ad1ed65b1ddb6f2aeb5327d4d35e019000b7c827db9e81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a29fc302772788876a826cdb7641578919ddaeb931a77305f75257113693b33
MD5 618ea65bb7dd3565567dfa076666d6f9
BLAKE2b-256 3a8e3e970ef855f42119b55359cae2ba3bfa8e06f8774060123405b6c6e20dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8292fd3dc763a679283858bcc85462f4b7a7d7287ff19d438c53166827597464
MD5 59d46eec8eec49716b6fac6099ea5891
BLAKE2b-256 60595594debd9d203a6cc9b2a879a6f2c9facaa85566ca9094c80da191ce9c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 fd7a16ab7a01258c0700bc11ca47c94422a573fae27c04d4c793384a785c3cb3
MD5 1cc7e449281eaea88235fb586a21f7c2
BLAKE2b-256 d2bf60cdc42ccc10243b774e06cf28a6a354da38b52cb1f06ec1768805158045

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 10.4 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.24.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 275756383f58461d66f687cd3b3486aa83cd17fd2707496ac37df9c4f7e1db8a
MD5 8d506aa6da00b29c7f0b438cdd149226
BLAKE2b-256 a1029e234a17a773ce25bbd06e3b831819c7b3bd6aed348cca2ed43846480a26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.1 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.24.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 868a318799c28cbddd37cc24136c7519af55102a14086f2452a514ef9436580f
MD5 e2be691ca199f9fb634df66e52652492
BLAKE2b-256 3c7bb3c7164b8a28c8df75f2b6b81d6ee307e3f189d7d4f87319e96a2f6477e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2403a197ed20cf72a7eff8b26c2168e3301b4d53b8e43e107921200287ebc3a9
MD5 3baca9dc4603f20391108b68d7be8d75
BLAKE2b-256 9fc0348960f17795676854f3406799e631563737890d634481bb3c26ec5fb1a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a9295b3daa5020aee41aa6670bebb501751dbc22af7f8007876ca67749af6bf
MD5 ba371746686d9360c4f5e84b6bceae5e
BLAKE2b-256 916b1aa33334c9e4542e53140776a22aa0b9c7da6e83f14babad26fd83365c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b5cbb73fd47b7e3d9c428476a2cb5f1b950eaa9702b9ef1c158c8c414c835c95
MD5 1e91714bd0f0eab3f1a7de9b101e4a54
BLAKE2b-256 3e8249aa09268b32e9167af8beca9a36bae0e38f52cfe882cf237197fbe45b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 9d52107cda73f1fe698c6d4b1b45d4623248e21ca8d21b496ffd8c5b2cccd5b5
MD5 c1aaf0578e102e4193c8b6e0bf8e9685
BLAKE2b-256 a2508520040564575a7323a9ac2954e1788ef5d862aed76a62c43d99f52a91f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 10.4 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.24.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2f5b575305e38bb1768531943c40d2ff9d568e68d665caa1c1f146a4dd544e3e
MD5 8099ba573297b99d19ab65aa4d5ee46a
BLAKE2b-256 f091706c3823bdae42c7482da8bf88d70a1af51f57b1075da5da3b8ef9ed49ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.24.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.1 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.24.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c5a68a3036d9b5de557895ab0de95b65ff281a166df79ee30720ba209f48f812
MD5 d48cd5a13d11765beb3fde0c16a7f15b
BLAKE2b-256 caae7ed9b92c0a19bb23f260f8ddee064f4a8930171e211ac8bda88354f9ca5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b056d3097e27bc938fb5bc9cbc90119cf7645aed37ea68e882882ae90f5284d
MD5 cb2f1ab65112b0867612c9c276158b60
BLAKE2b-256 99a6db5911c9b89d15236bfa6d982c1baa0319738eb51b0c15d3d6c00db3a016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6b637e72264ed2bf1e4716c17222a03b2bd74db6a41ffd131b905f372d4afaa
MD5 3929e4547784c3819ddbdebb49ca97af
BLAKE2b-256 14a9f539104d1034bb3de0e48284bfe47d08ee916cc638ac7b5dd1605291ffc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.24.0.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 aa8205a0e5635dfa8b19589ad48e3538356e9a3613300eefca2c993e7f01c1c1
MD5 2eae31c8355bfde4843ac05db1c3c1ec
BLAKE2b-256 5650342d6f12189896d72fbf122a30b968f4f8de77c0de4d2fb10c8b4d76dbbc

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