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.25.0.0.tar.gz (442.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.25.0.0-cp312-cp312-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.12Windows x86-64

depthai-2.25.0.0-cp312-cp312-win32.whl (10.3 MB view details)

Uploaded CPython 3.12Windows x86

depthai-2.25.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

depthai-2.25.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

depthai-2.25.0.0-cp312-cp312-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

depthai-2.25.0.0-cp312-cp312-macosx_10_9_universal2.whl (11.2 MB view details)

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

depthai-2.25.0.0-cp311-cp311-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.11Windows x86-64

depthai-2.25.0.0-cp311-cp311-win32.whl (10.3 MB view details)

Uploaded CPython 3.11Windows x86

depthai-2.25.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

depthai-2.25.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

depthai-2.25.0.0-cp311-cp311-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

depthai-2.25.0.0-cp311-cp311-macosx_10_9_universal2.whl (11.1 MB view details)

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

depthai-2.25.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl (12.4 MB view details)

Uploaded CPython 3.11

depthai-2.25.0.0-cp310-cp310-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.25.0.0-cp310-cp310-win32.whl (10.3 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.25.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

depthai-2.25.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

depthai-2.25.0.0-cp310-cp310-macosx_11_0_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

depthai-2.25.0.0-cp310-cp310-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

depthai-2.25.0.0-cp39-cp39-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.25.0.0-cp39-cp39-win32.whl (10.3 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.25.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

depthai-2.25.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

depthai-2.25.0.0-cp39-cp39-macosx_11_0_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

depthai-2.25.0.0-cp39-cp39-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

depthai-2.25.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl (12.4 MB view details)

Uploaded CPython 3.9

depthai-2.25.0.0-cp38-cp38-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.8Windows x86-64

depthai-2.25.0.0-cp38-cp38-win32.whl (10.3 MB view details)

Uploaded CPython 3.8Windows x86

depthai-2.25.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

depthai-2.25.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

depthai-2.25.0.0-cp38-cp38-macosx_11_0_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

depthai-2.25.0.0-cp37-cp37m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.7mWindows x86-64

depthai-2.25.0.0-cp37-cp37m-win32.whl (10.3 MB view details)

Uploaded CPython 3.7mWindows x86

depthai-2.25.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

depthai-2.25.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

depthai-2.25.0.0-cp37-cp37m-macosx_11_0_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ x86-64

depthai-2.25.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl (12.1 MB view details)

Uploaded CPython 3.7m

depthai-2.25.0.0-cp36-cp36m-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.6mWindows x86-64

depthai-2.25.0.0-cp36-cp36m-win32.whl (10.3 MB view details)

Uploaded CPython 3.6mWindows x86

depthai-2.25.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

depthai-2.25.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

depthai-2.25.0.0-cp36-cp36m-macosx_10_14_x86_64.whl (11.1 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0.tar.gz
Algorithm Hash digest
SHA256 0d551432d5622683ce935cf9ce8e398645bde4d854c957c1c88f1f3b9e8dcb27
MD5 2a6a9f8f705640cb26ffbf33ca5b9d21
BLAKE2b-256 f4b9458b275e1344639abf104e5a38d07cd6a29dc064b85ac6d3b58325d5b072

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.25.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.12

File hashes

Hashes for depthai-2.25.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7a77b63ec35750d20c38fa4254a5eb3c7b5fe7e01a0966da77c7c6203cef2e4
MD5 655ccd8a2a69c01315c080e97d977a5f
BLAKE2b-256 36ae6d78d5abbc083196ecd7ea696d57bd01ae7b2e4088616dfa864ad7de4ae7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.25.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.12

File hashes

Hashes for depthai-2.25.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9fece6c03321b17cfdf5d804e6fa6dcc7618ba827433bfd192c51351e709875e
MD5 cb23acd3140073c55b16ca11d36b9452
BLAKE2b-256 53b520b89b6f9eb1c49ff04fb0a56dc017a527573c2d7b68979c72bbda98fdc4

See more details on using hashes here.

File details

Details for the file depthai-2.25.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a5f48dd45e0f2cb94f0ad94e3123102afff33996510dcb41dca9ffda0e73b7e
MD5 c557783d471ae7038c35e2183a82e234
BLAKE2b-256 ba28b170e083c11573aa89c78a226c8728de8f5d95876689d0ac92b63d128558

See more details on using hashes here.

File details

Details for the file depthai-2.25.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 861fb8f12c29e8a288488759f25dbbff2373ddd23844b1c2ce2e63941b16f786
MD5 e9c43ab41e95cb87045cce161431a55d
BLAKE2b-256 aaf4634ac894fe970f0dbe2e3831ea869729d93836f5763d15b9388fd57eeca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15840f90c12bfc4c75110e352c8b82c5663f88afbe3b08f161f65c88066eba36
MD5 e44d9d885b8661aaee0e9f0c7c4666d2
BLAKE2b-256 808fa50a8e4aa0f6053a2569632c479e1b6a776911e85c5429b2727809f9d34e

See more details on using hashes here.

File details

Details for the file depthai-2.25.0.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9e065a5aa1da83a050ec33f2a5016d880127c0c3eaae8a95d2988d525ee3d058
MD5 c0885f22d28db24f4b01a424ec13bd01
BLAKE2b-256 18ceca8aa6a4c7aa3514001cdd6961cfdc8df9cb2d53a9079b46efb44d73c00b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a8ea5f7be54ff82447d52a73034c2d29707903272448c4acb2bd32da398acb7
MD5 4597df9e809f62cd5b909255ef4d3a8a
BLAKE2b-256 c7f1a1cbabac4d6ba7613c0fe87e1beb846f67d9a9ce426e502d574c0cae22c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2b592e0a55c8cf88673982c49308f8d970b91c7e27a8337a9fe9772337537243
MD5 e42e343426a6f21aa589a3dfc4892afd
BLAKE2b-256 843878a68e4022c3d7b173e445895cbb576a653b457bd39e33340b9d876701a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5d67ffa8f90563180c45fccd3a1910813bc384644add1e12b1070c011ee21dc
MD5 19b9d26cdca62769e3c5778ab06ebbab
BLAKE2b-256 bda492d4b114a8abac8e9849a233bf4dcf9eea9ad4d14c681f2c951652a3dfcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8e29a8d8dcd35a50b73264b64e7c3e1f542dcf2aa20fed862016381d9dc749f
MD5 58b97dbd10109d3ac882b6628bdebeb6
BLAKE2b-256 5b109e5e557ec01b9f24213ca27b0f4827ae80b50dc04f63e3a1966e9095129a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d4a1b94cd7559a2becf19b3ccd963f372edde64d4a235cb8eb5fc53718529c3
MD5 36360ec7b6fde434125517343a34d12b
BLAKE2b-256 7499cbd08ef0547bcf8eec3c472e5e303d5c693468b8222712a90e7e262bc8ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7299e600a84fa13ec6789451c11f8ce437458a09969e6e59fb1f71e0a7148e9f
MD5 73c3feb963bc3361f3dc8f988b5f23c5
BLAKE2b-256 443c4f8b607fe1f4a46415924f11d0512a6f4439e0661b0bc6a3b91603d1e964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 033d92de7743d6a9477a12799f3650dc48b66cd7167a6bdbe9313d9d2bd0f79e
MD5 6aea51f0ed8c4b378e7d55f4e43e46cd
BLAKE2b-256 c0a59290064c5f361bac5a959bba9c5a0a8d0819064cc821d6280dd5f61c24ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7f863893c8f2351ccaa5ce4835c49b37fd9976700b66fd75d2233f2d4a2049b2
MD5 15dd537bfcdc0d4e1b22e7ea6ac0ef58
BLAKE2b-256 1d4f01f1ec13b5770d282703c25e41de231c64e5217bd9e68266aaa3cfeedef7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e10524a9907c78fbb4461411202580c024585114de3b1f6b16c9234fc6cb521c
MD5 e161b9ece24906ee6cdc0c9937d5a9af
BLAKE2b-256 5bdb7510a09841ae498efb8d54ed18e1b3c62a5a820403c17d119416413583be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 883047d8e90da730e462260aba6791305523f6e011f7348c91684252f745ff45
MD5 063384b7535bddf704bbf70c3ffd30c2
BLAKE2b-256 e261f4b7e87463b8b7862dddfa026f42f1eed8f0e055093d85c0014353e33acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8be92a3c4e38f12df22f08798e3f9e77ccd1c6d00986718391c2aa4b6947ebac
MD5 f3f32a8000742c106326fa0b3022c177
BLAKE2b-256 73395258fd2bfcca124ae5e2dfb5bfc4eeb97b0868e2d49c9e545549af20d2a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 cc12b461dc3a46a046455236e137b47506f6f7792114c66a48da3229a73e7187
MD5 5224112fe0cdc5ee0caf26268aee3a4d
BLAKE2b-256 1f29ac7960e54c3b6aaf9d9fcbf573e3c371896e8f15199dc8b74a06ce815e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcb825cc61ae9390dc490246ea057c4ecbd5bc6e2367bec7a356b0b97c2c06d4
MD5 949d796c30610450f2b2fe2d45bfbc44
BLAKE2b-256 9b2e94e06fd6491e3217c83e3e0db1605f69921cf3ab8f2195a3a871a4e1133d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 74fb00af51c1ba5d4bd88b7ea520a0dc87e505ae9c5c3786a97dd613a5a89e25
MD5 efe98f8314950d94def75a1d748b0449
BLAKE2b-256 15e099f2ba85a1aea31d4916e56145b9c02829b273a633fc260697d47782bf6d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 267ad298bd958637f11a86a688f65689c06752db863f0772ae1e273ada9d1a14
MD5 794acd1d4405b876d825b4bbe171e460
BLAKE2b-256 018e4fe2992ba85fb87d63092d266fe90c1a77ed87c4246fa4cedc578ffbf054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d30eb3ef763f12eaaa03e41aad8787cc69887dfbf2e96eb1a68d583ef16984a2
MD5 ca3ecf6f3432c7d5ac32615d3f1bc6a2
BLAKE2b-256 bf533cf69bc233a970779e25a028be22d585bb7fb22e4007f8dbb536aa5387e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 237f6a61bb529d8ed58aba36e9f1be13a612278c3425ecf43e7a78d8464c047b
MD5 c4847b0483b63a163054f458dc31de47
BLAKE2b-256 c6fadfc569dcca6aae4a5bfaa4a67560b8d784b44f4942fab6b1463aab7012fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 5792c4c99fd8b0708ad0f5a7520cdbb7f524475c6f0851fc1dac520be64a4d87
MD5 fb933aa2ca7e9c809db1d646a3a64988
BLAKE2b-256 05ee4c763937cab5f4c568685261e6582b5ffe0672fa05778fb253620d01f3ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 106c0766f78fe5edd902002361cc80dde8240d781dfe2058938b459d9e2198bf
MD5 f3b51dff4eb2651f8dffb409883258fe
BLAKE2b-256 3ca5a3e45e329b9326b51a803aa87fd5aaad835fb556d92cdb3a866afcfeea65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 a1a077619a35b663d8e40f2cb8e13689d51e8e05caa6a0f34431199e3bdf5dde
MD5 b734c479106bd61cedd3570fb14ed535
BLAKE2b-256 d47b92be65960ad3fb98f3f4907f9d286910320cd48d234dd2a13d5fc77b67bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cf376c512e568e6d648d372514ae9cdbfba12add74e3ecdbf8877efea9a4ca0b
MD5 1ccd60daaf3d88a52fe6aec693d756ad
BLAKE2b-256 b73ff83e38625a27dbc10257ff69442adc63c02022d0dee99822d0da8c8b23cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c528268023f87269f32f5dcb89530a26d6d39cfea6ec262e88c545bc34619045
MD5 52d2d5458b8ebfb87853f72b44f269e1
BLAKE2b-256 a2752081ab85ee9cf352fcefe60dd3b6b7f0a09487a318cbd1b9fb6adfe9919a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f43690411da216de2975680b8fdf4f0f0e0ce34a1575aea6a4260ea367d25ac0
MD5 d2842d3e3a031e6255bdb68859a10575
BLAKE2b-256 252289beb5f379c5d9539ab80c4af5ce12a65fa98a75a6abdf8ea8b5bafd90f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b6b0ca46f5c1b7adb339c7dde1ea22875b455393d8f378c751efc8cabe75810
MD5 1e100e6f30e4f995496a4a544042251b
BLAKE2b-256 b2460181f3b13c93c8366baef12f19f220ca8462c778954b86f7ba4ff378ab56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b9f6655a5c7e57c052af5be95e86bb5ba91e704648b7633bf5bc6e67bd6096c9
MD5 9ab1460a3cc184b910fc4b64d29a392c
BLAKE2b-256 dd0995071b70547122106e77af1244bdbe009c02181028ee24f41c927a70972c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3ccdc2bb5277c21682d56022a6a5af2af2bbcbe36e93901d62363b278298230e
MD5 d79062492e71b0302663de4565110f55
BLAKE2b-256 45ccdb74c9d76f70e1550846952049efab44a9272aa8499ce16e4b6bfdd4b8ac

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 02c64db28871d7185d021b1015d283ced7f613e38f8126b0f3ec4e778cb67899
MD5 f986db7462781667e5581ac13dfd40d9
BLAKE2b-256 2cff38ad2501d16970f504aa24ce3e857980f6c072306efc29b70b5e322e076a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47f1e67f59594b503189053efb134190ecf0780719fee25ebe79a2643f7cb388
MD5 28a1282acc1243f271734c45c4147db1
BLAKE2b-256 8bfb5982afbcac6834d878b59f71737b1d45070220782e11f1930f3c874edc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32f6ce654d1bd36b538e7266fa919b133950034778506260e1fcbeb8e8ea02c9
MD5 9fe21a899b949a6a1f3be3c1947f89d6
BLAKE2b-256 224cc0b6deb074b65c9afc6e72ee4cc2f976432d8abd93cf840f3ae91e18cf1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp37-cp37m-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 b6d7ed50fac7ed480c69be394e3fb6e4c3985ab7cb42440697f2f89b9972e63b
MD5 98854cba9da14f3d3945ae70e27d18cb
BLAKE2b-256 4f229c76319485b82061517de87e4cc53cc18359cc71cab4d0ba074563ea8a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 192f4830ad5f98b4befb1dccb2de3fdaeeea2604dbb16698a90012971ab91abe
MD5 fd0b0a188637d18bef16fbf2b191ee0a
BLAKE2b-256 e7ddb423f5511ee19b9bea27fca617e0e13bf455aa8cb9c521bee30a67f6ac06

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 aefde0d9dffe53b50a3bdce6a73d6fd867e0e39e69a76cd07f9ad6bfb23d2705
MD5 816d98111f029d02a56457913dc54ac7
BLAKE2b-256 6c3dc938de765de53e857ee9df148049f63a1541050cd9d8d843bf6bb442440e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.25.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7e7a9ec66677b0c7e19e38a8d13c9aac51be52373d11d862027b346688e56e0c
MD5 87c6ef0c58887c73cd1f6fcd4c3aac82
BLAKE2b-256 6ad1a1adce3b87a2944c0326ce998ecc6bd06c7afe17fdd46bcbcfd6f23be790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8da730dd5653fb05a3f5b9b78e532a1abfd46495d1874df88ceb2bece810bda
MD5 2d752f4938f6259538ae4e630bb86ab5
BLAKE2b-256 04a512e06204200c90a910ea73466bbf9126d50fd70d87a5325ac0fd48b6c2a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cabec2946595474b25e8887c23d59b08abf77799424e363be1c691a64e4c83a
MD5 1f188f0874ef52f8b1193ee4b6cfbb4d
BLAKE2b-256 5950bbb04108cdb68299a79361c0bb62b7ab80cda44117a13641b2a98365e809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.25.0.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a1ceb287a446350469970cc9ed90eb42bd7891f8d31e13bb6420e34a4f326dca
MD5 41e98c749e192c94751b530dbef01104
BLAKE2b-256 c6eed54f4666ffe35c08196a518381da58ae04bc229268b039600e4cbba805c5

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