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

Uploaded Source

Built Distributions

depthai-2.28.0.0-cp312-cp312-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

depthai-2.28.0.0-cp312-cp312-win32.whl (10.8 MB view details)

Uploaded CPython 3.12 Windows x86

depthai-2.28.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

depthai-2.28.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

depthai-2.28.0.0-cp312-cp312-macosx_11_0_arm64.whl (12.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

depthai-2.28.0.0-cp312-cp312-macosx_10_9_universal2.whl (13.3 MB view details)

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

depthai-2.28.0.0-cp311-cp311-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

depthai-2.28.0.0-cp311-cp311-win32.whl (10.8 MB view details)

Uploaded CPython 3.11 Windows x86

depthai-2.28.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

depthai-2.28.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

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

depthai-2.28.0.0-cp310-cp310-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

depthai-2.28.0.0-cp310-cp310-win32.whl (10.8 MB view details)

Uploaded CPython 3.10 Windows x86

depthai-2.28.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

depthai-2.28.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

depthai-2.28.0.0-cp310-cp310-macosx_12_0_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.10 macOS 12.0+ x86-64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

depthai-2.28.0.0-cp39-cp39-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

depthai-2.28.0.0-cp39-cp39-win32.whl (10.8 MB view details)

Uploaded CPython 3.9 Windows x86

depthai-2.28.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

depthai-2.28.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

depthai-2.28.0.0-cp39-cp39-macosx_12_0_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.9 macOS 12.0+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

depthai-2.28.0.0-cp38-cp38-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

depthai-2.28.0.0-cp38-cp38-win32.whl (10.8 MB view details)

Uploaded CPython 3.8 Windows x86

depthai-2.28.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

depthai-2.28.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

depthai-2.28.0.0-cp38-cp38-macosx_12_0_x86_64.whl (13.3 MB view details)

Uploaded CPython 3.8 macOS 12.0+ x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0.tar.gz
Algorithm Hash digest
SHA256 0f068130a102fbcbeef6cc23d253b0e78e8697454a1aad22eaa294afc527c4c3
MD5 2ead22a4c978d8fb5331c826d3c6cef3
BLAKE2b-256 9e85030ee10b8786dc4c9004b73017169c3c3632089f14cc0cbfdb33e2f6d25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5cb22354b2b1ac0225d26ac6276bfdc2acb959a7c96324fb1a045a3787e988af
MD5 2bfd6b299ac307426bb9b9e6f16f0986
BLAKE2b-256 4d8de9cbbc372d82da11bab17b62d1dc88799a5693f88a9a4e59aab0083c09a6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fcfd087bcd09a83914ae9e6d421923c1f4f25341aeee40f23575282b0ebd70e4
MD5 58771b268aa64129645fa2637ebe73ed
BLAKE2b-256 2d56cdfa3a29114313dd3ecc1aa48e232d50c7aa5660eb1695403f1541041a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0facf6602fbcddd32205189346a49f1cb6e818773baebdc5926c932da860eb54
MD5 8e8ea4650b3160407251d1edd0a377f6
BLAKE2b-256 1451cbdea950a77eeba0a70be73888d4d9f50d20a8c465c81f78b54c218b481e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14ebb4d3ab8d44c233559310cf5b0f99b41e3f813c4a2de79a06855fb30d83bc
MD5 de85c12d69ac1b83eb585e72e882eec8
BLAKE2b-256 6b295da4c53d778301852583a02f45b458d116ac796c526430ac6f1b545f777a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edee79d72b3a27deb2ff10d7d9fc9d2aa2e05eec9db3590dc0594177444bffa2
MD5 6818563cd50084be447a19dfeff744d9
BLAKE2b-256 2494798450ffb11b2e2130427b9349bd5965905a22f7af5643d7cdc6f038898f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7674aa5985413f049538ea074901d8d0252ff908d969d8fa41a6b6eed2e8dcb0
MD5 232294b5905a025341170a6cb3725a09
BLAKE2b-256 c075177f46d41b070c84562f7f72d291cc28e60aad9067aa3db3237befdf57cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cc7e961f966da684e876df29444a5eb383911ddc319382be388ee06c29fdce48
MD5 ca26130e7a6c52b23dc2a8c7e7448949
BLAKE2b-256 3048ed2f1d0f002ca1b8c282ad6df908fb05d9536a826f88136f410c0cc05e0d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c68992725ac40d3f088c856191a68f604b37f66f11720dd1e09337ceb69d18fd
MD5 ff205788d71b0bdf1608ae6eb8d39cdd
BLAKE2b-256 efaa7f8e68f38f0aee9f7755f37ff33d8455ed37479dc2f7c04ef1ab37592ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3510af34f20974ea707dff691946bc37098ad3b61380ed9e1eb72b9f3f204c9
MD5 98013e86011215951e2fcc27fb22a4cd
BLAKE2b-256 1b8adadb9a442f16c116acc2a9d027ace435f8910e5e65b88c19b603c18ea303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 551925ad157f396d7de349fdf654a0c02eda434a7a5c78784d5ea7eb729b8419
MD5 c17e6874c6a3bfc80f1f61716c7e48ef
BLAKE2b-256 c36b5a9c4f805422e496fec49b83c1582cfc5fa23c089cbc9b0136268f327b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8967876a8a42af9b97ba23abf60efad75367b22551a36d0846d553c842ab45e2
MD5 e95695a1e601af0d848864b80718696b
BLAKE2b-256 1056ea5622f697591e5f22a213ac85c20006883d70156da22205cdfaa2f2e145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8afc65b0e2800c37ae1f1ddd38d0716b70dcc77df8393a0bfc9d00e6595563e1
MD5 242c39544864d3186e76f3ac29cf3d1f
BLAKE2b-256 72584268cdf2645b568ad571463c8c574c226d56ee3650bbad20476e61196837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp311-cp311-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 18ce8aff5a29a9dd2574da5f042676a64a02a5240b86bf5f76825af05c51c116
MD5 ed4212188eb3d4b589885380576bfb0a
BLAKE2b-256 b236d2d0eabf83cb25852cef8d97da48d80386a18abd8c077bbe2b3619282027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e7921ec5ebf4a02994ba7c8cb16849e2c65c6e7663a56ff2c4357f8c67f4db52
MD5 d21de0fbdaba7484983ff4923779c260
BLAKE2b-256 562690469961a1afcde5ccdd1e0bc58ca58a3e5970d61e48938134dea129daa8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c59c91870cd07101089986a635bf5de18dd777e3ba7963507b7d653073f97c90
MD5 b131e9ad376f1b71bb7122c8cfdcbc74
BLAKE2b-256 c50ae24243c784f3f79540bbe2cca0e6a71b2b6ea6b29babe56553d819501524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab6e2ff0e05a2f208c5be35ead3146267bf85f11669341b825c1a1c2ee808373
MD5 d4c63b13db4d38282ef118014f54e89d
BLAKE2b-256 8bc0f92c145afc648f27e2969f7f1dc62279b35c128a7d934b28de4aafcf2a3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff4d59a9bbb39e1673a74e3a7a1b6e0a5df663b2e708da3f04f04b4794dc1c52
MD5 284e6d3359ac2c369009871491727d57
BLAKE2b-256 2d2557b9133d98d314265e92e705ae84cfd3416c081ca54e09131bfdd0618faa

See more details on using hashes here.

File details

Details for the file depthai-2.28.0.0-cp310-cp310-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 00a134ac521f41a8e51005ce912ad195595258cd343bb371cbdf5c8bf35e7bb3
MD5 70bcd2fabbc4d0fac002cd64dba9e922
BLAKE2b-256 62d8a09052b1f09261559e6b6f643b27c3c332db745d858d749ab2167eea0d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c912cc5a6582d02a07f59004a475c605ac94cc4efacac2747ea32a16782b7a8b
MD5 498ed6644295593306eddbc03416fe0c
BLAKE2b-256 4294a71f0472aa9ee225108e5be62539861b1bb92378b9adbc18551dcc95d926

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b894c8168bfc29df378c2eb1d53e4fb1971ea65f27128270c076f8709dd82515
MD5 1909ddcb4a0132ee9a93f7ed8e362c85
BLAKE2b-256 8ea1465abc627b1bba7d835d365cc4af22e84509fdee51afd353005bc352be3b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2713d844461a8d194838a9d4b8b3373ce05985dd343ade6ed135f2d73a4bf2f7
MD5 51b93dbda7f91d2787a417c03d154c8f
BLAKE2b-256 c133541cc9f32b05ae9179432ccf743335ca38ea34eec3bb4fb7a6f21c8c3213

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 146bfcc7e4b6fd8b4f2137024446a4ce3d1bff3082c5261c78a5687ce25a7b1c
MD5 418978a634d757b6e93f1fc4abb6ba83
BLAKE2b-256 f344639c22ee9975f138332ed92caa63c02b4ffe7bdf3651c1ed78e5563bbcef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0530886985f8e2f9df2d6c5640f46e0f34100d318e11742dfa119bddf62d040f
MD5 efb7baed1cf9a759f985b835077b4de9
BLAKE2b-256 6b09cf67f8aff56f11a59ce6a520491faf8a4ca2cd4011fbac953070c2f18d57

See more details on using hashes here.

File details

Details for the file depthai-2.28.0.0-cp39-cp39-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 dcbe2c1d0b7b9dfa2ea00548b7d8013906507f835023366fe1182d227c6b0912
MD5 d587c5c70d7c21afdf437a67a00e56e8
BLAKE2b-256 858feeae8b01aae40ddd452703910ba4df8248e5ba14bb13fda06cb306c8d417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4c3fc94759ad60626883b462d18b2a818798d51a3f9aa7585cb6e53083dd5fb
MD5 eb4c673601b39853b8a862502cf4ff30
BLAKE2b-256 c1f165ca664932019d5fa00a11c890677562c44d4d8fbaa8d576e79d32917b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp39-cp39-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 2145ac923186884f32e411c9c7fbd32973c352fc7f8f422012932010dd976e70
MD5 b6c897bed796c37f12a11fccee2fd965
BLAKE2b-256 f10dbf6a1ac992846f6eac61563c990c4357595d1b668062e6da521020c2cffd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bb3ecab0ec22d9f4bdf00c0bac9cce09d3574d3c9b396624808c28a0c0a179aa
MD5 1f014e9179b73283bceec4e8f1f27bd9
BLAKE2b-256 e0adbe1e195ad1a135fd6cf785940eb1d070ad9f1de27c3ba6684ce835b6e276

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.28.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1041f6034bece5792c5b864d8d6d2bd626d2d4c68e60ed75de8e04bd92b1d8e8
MD5 939a1ffaab863b52eee04a05279121ee
BLAKE2b-256 23004e91d18f24038ed43633bc252f3229f5ee195b9210739e15cf112715e220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4de4af436b19514e4842932055c041130852cd2e81e89704d729cfbd700a1c9f
MD5 88c51565f4df2d48a8e617fd239f5941
BLAKE2b-256 f81f35f13b7617420b59dd6145cf224e90ed10b5fc3f92457db6c3acf0ab3422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c385cd8c2602bb0c4ddc4f8d9134eead42e7f63eecfee9a10736e73f7340f2a
MD5 86cfc6214bf1e46e1bb52dd203f6dcea
BLAKE2b-256 ca6b6ae7b33828af2035b70fdfcc16c21c07bb3a2bc51fc524bf5480b738827e

See more details on using hashes here.

File details

Details for the file depthai-2.28.0.0-cp38-cp38-macosx_12_0_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm Hash digest
SHA256 abea6184c0d3967307824553a0d88759586321e43f018545ab64b0b8135e8a45
MD5 d87d39dba2d3814aaa4e07827fcaa742
BLAKE2b-256 9e881f60dbc7d061fce7a39afc94ee01f47d50cdeb90fdf16671db1d92e6be64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d40e7a3d8be8d18611f472163c119316a9f8504495292bab798e636a06a4854
MD5 4cdcecdec93528f40351e9ea29c73dbb
BLAKE2b-256 582e2c2bae2b347e9874bf65f9b2cffeccb3f55bdcdeb83f79533f354abb674d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 94e4c8c4cda896020a9754558438d0c4977cbdee859428ad5bdf8f3c5ce22b47
MD5 5d347027998452c542dc72862f63ce7b
BLAKE2b-256 3dbcf7b8a59ba4bb8623a46ee4f5c495817050a0abf6ba137dc3cfd4b1cff3f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.28.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/5.1.1 CPython/3.10.12

File hashes

Hashes for depthai-2.28.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f342fb3c791ef0e4c5db80027290a406cf1add059f9ce68bf06ab1819a9c6b9e
MD5 6e02d4c15965de51b1e5eeed3e59243f
BLAKE2b-256 69b184741cc98cd30ff7bb9d7e7a28ee36514788a5c6e7787e579633121bdad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef7e66421f3b4390edbe3ad72cbd523ef7d29881bab79c89a557537851a96df9
MD5 b2b8a4e1ee2302f43120a28981c43a3f
BLAKE2b-256 f6a897a28122e6a292cda8e349950525d29d87b172803f8beb7a66a90eff4f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c4f4b1edf9e149d4793d5d7faea91ad9fbece863897a418fb126065f3531061
MD5 8e689a76cd1198863d24bd8bfa1065d9
BLAKE2b-256 79572ffd65eb7f06808cfcedbb6e2ed9947ba8385c591cc95118ddbc0c2c0bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.28.0.0-cp37-cp37m-linux_armv6l.linux_armv7l.whl
Algorithm Hash digest
SHA256 cad79a6665ede5adf911e5ccfdd8c58f197a88c2689b3dff4bb8f8917288b714
MD5 674d762d0b67ffeb0a9e40ae54ca0f58
BLAKE2b-256 bffbf2599157448c326dcb399e06f791c5a4be7524c109875e18cc27996ef845

See more details on using hashes here.

Supported by

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