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
  • Ubuntu 16.04, 18.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.18.0.0.tar.gz (387.9 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.18.0.0-cp310-cp310-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.10Windows x86-64

depthai-2.18.0.0-cp310-cp310-win32.whl (9.8 MB view details)

Uploaded CPython 3.10Windows x86

depthai-2.18.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

depthai-2.18.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

depthai-2.18.0.0-cp310-cp310-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

depthai-2.18.0.0-cp310-cp310-macosx_10_15_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

depthai-2.18.0.0-cp39-cp39-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.9Windows x86-64

depthai-2.18.0.0-cp39-cp39-win32.whl (9.8 MB view details)

Uploaded CPython 3.9Windows x86

depthai-2.18.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

depthai-2.18.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

depthai-2.18.0.0-cp39-cp39-macosx_11_0_arm64.whl (10.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

depthai-2.18.0.0-cp39-cp39-macosx_10_15_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

depthai-2.18.0.0-cp39-cp39-linux_armv7l.whl (11.8 MB view details)

Uploaded CPython 3.9

depthai-2.18.0.0-cp38-cp38-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.8Windows x86-64

depthai-2.18.0.0-cp38-cp38-win32.whl (9.8 MB view details)

Uploaded CPython 3.8Windows x86

depthai-2.18.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

depthai-2.18.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

depthai-2.18.0.0-cp38-cp38-macosx_10_15_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

depthai-2.18.0.0-cp37-cp37m-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.7mWindows x86-64

depthai-2.18.0.0-cp37-cp37m-win32.whl (9.8 MB view details)

Uploaded CPython 3.7mWindows x86

depthai-2.18.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

depthai-2.18.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

depthai-2.18.0.0-cp37-cp37m-macosx_10_15_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

depthai-2.18.0.0-cp37-cp37m-linux_armv7l.whl (11.5 MB view details)

Uploaded CPython 3.7m

depthai-2.18.0.0-cp36-cp36m-win_amd64.whl (10.0 MB view details)

Uploaded CPython 3.6mWindows x86-64

depthai-2.18.0.0-cp36-cp36m-win32.whl (9.8 MB view details)

Uploaded CPython 3.6mWindows x86

depthai-2.18.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

depthai-2.18.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

depthai-2.18.0.0-cp36-cp36m-macosx_10_14_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: depthai-2.18.0.0.tar.gz
  • Upload date:
  • Size: 387.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0.tar.gz
Algorithm Hash digest
SHA256 8632d7564cb36310761341f90913af220875b8adcc50ae15169382da52fc1103
MD5 6101fa6f9003f73e5551c25167473348
BLAKE2b-256 ff55c998e7e07c72c560e8ad741f7ed370557dfc2fbdcfe81d4843b74c04fd2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f91e43c82641a9b2243ec1dd8625dcf64ad629939e64382ec509dbd898f55b86
MD5 6fbb819f1410f5ed710ecd9f407beb90
BLAKE2b-256 5746100fb2fc7c05031569567ab01a19ec3b790d815c089ad0fc3dbac181c885

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d9c54e5fefcefe284a2fbd5d2ee5e0406f6590a9aed7f413bde32f8358f8215c
MD5 8fad427b2d14e13a9664cf45b7e98499
BLAKE2b-256 1fdf79b63f3e41c6c86201f4e1b879465fb1cf25212a01cf7f2d976583b670bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d488230d638cf1da91e23a728c1fc51da7653cc7c1bae0f425482b9c74ab68b
MD5 efd494516f612f5279c786729135e08a
BLAKE2b-256 2340f36ec97b665f9bfc15bf3c5063ead4467a048e9e30b1683475ad0a6e43f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9c4c6bc111a4d2fcf95cb38d021fd6c9aed06a2c56186a8ae71bc55ecd2b444
MD5 1b84da71c8ff178699f09e555ce056b0
BLAKE2b-256 000d7e4585c1a637ed8ea93b14edbc80bb90045a2597316b9ddce06e94b20177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2642cf4fffe2404bbb9fb2365e41246d76e72922295457ebba368468ef17619
MD5 aa2945741a1ede9f4b3a794c02bbbd0c
BLAKE2b-256 587de30297c08236f7c673f3ae549fd85a56f6812724a3296dbd87af5bc8eb39

See more details on using hashes here.

File details

Details for the file depthai-2.18.0.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4eaeabf0899e9c10f5efa171dcc038896dbd829f0c42ec45ddcf0f5ee61637fe
MD5 5955e2317e1c1ff4546298c1a7961975
BLAKE2b-256 547475bd7646b3881df8259fb82a2c4dc0c5c0c9e4b64033c68ed5c261cd943d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4a14ed77f32cc62010512f7887359823a0b0fbd1d2c318dcf988e996d6b1be81
MD5 e5cf56e0ff1581f0f3e521848af618d0
BLAKE2b-256 dd64f569506c9828487dd72601b296385d897fe01a1e10cafdb5047851760812

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9068c75d4284f071e43490b2f507fcc527e7bc82d8c81a598a0f30269d406f7b
MD5 c43e02739632bb0a1576a74b54b385cc
BLAKE2b-256 b48e1649f30c7ecc65fbf4136173ce192c7f9bc1a367cad9aa2c16b6a6fa63cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d592e7a42fb54d556abdb4b491b5f4d51c5418b41b7be9a294ab11626bdab07b
MD5 c6477aaa57a1174d2990bd129c243d45
BLAKE2b-256 fa31d578a167078fe62c9eede2c89d042e03965784f4aad44c1ab12a585f6ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49e654369509af15e7edf6a7f96c8253abc3a81c4c19c57f00f7ea6bd5bdcd27
MD5 0660256a197234f6f912687006c4d91f
BLAKE2b-256 fcae486d4a26a7ebe500719ba479e998c96d7a6fd34aba74e86952c0e313f26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b174acc866787132f0059f3a8cf085bd468d2a254e3e9ef88a8fd77e9e678b64
MD5 beec0128685a32952f74eab02adc2e96
BLAKE2b-256 e8982de949c9e99b44a149e15546d9b1f9a2ba18b8741bc466bcc30afd06186a

See more details on using hashes here.

File details

Details for the file depthai-2.18.0.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f39f25cdc12d931647db2f4dff5828060f7adfeb3b616285829bf522dfd3438
MD5 c76607d37754dd1eba07f3830aaa2fe9
BLAKE2b-256 086170881c599cc364e249f91f9ec946c4938c48afc430ebd7de2f59e21a946d

See more details on using hashes here.

File details

Details for the file depthai-2.18.0.0-cp39-cp39-linux_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp39-cp39-linux_armv7l.whl
Algorithm Hash digest
SHA256 6ea86d16ac7349a17b54868deedd97e7d76125783ee2aa2ae6fefe114dad0401
MD5 5c773cd6d3c658f990384b31be249027
BLAKE2b-256 12c1cb24a48b12f2a8827281d86169425c0d411d8c2efc91bf4d986fa3b57a24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cccff0f0367272498505655d2b89e0343795b966d2d082396cdd03ec15885329
MD5 fae06f01f382fb819677fe9d1b4ccb56
BLAKE2b-256 5f21fdf4c9bceebe82bcbdeb5f4807ea41f8f2a02c27beee827ef6bc372260f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f35f2d37599a129d66bff1cfc67d8a69ca1ebd3337c3d7d5e83c05e9c5fd4713
MD5 f84905381095289521649019da0ac7ef
BLAKE2b-256 74296cf4ba2bad71140ae601b282f8732cb768ea23b7b7681c8151600d43e777

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 899c0945f3c94fe56f62ee042a26739bd844084be5378b5f2f303d6a02d78e46
MD5 d2ca80fb6c01e7d19480c218c79a38be
BLAKE2b-256 583cc581ff6a57991a92828ef0672d5d9ecf54c86b6645d17c45fdabfc18be54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d3dac58cb5cf31ac1322a7fdab3972cb8f64e332064757bd03734f6c753dc54
MD5 d69617961bcc2b982458327b6d3c3e2c
BLAKE2b-256 142531ac5a43cde6ece4c358b549dc6cc8bed5572714f2739303f231a48862c1

See more details on using hashes here.

File details

Details for the file depthai-2.18.0.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 310c210da1c185165fe07756a045ba6039285fc50abf5282197b991f6cdc8aab
MD5 50bb1d731dc37066bb9a24f9d644da25
BLAKE2b-256 cbcb60f7ca7eac5089943d91878dab16d40dd7b8445101c3f178373def5f2993

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.18.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 29716af991f852febdb197597d66c2f35a92c48770e27e580b59020406a16a25
MD5 d8ea7ea509c90858e7d1f50717cce55f
BLAKE2b-256 4aaac5b67827341057e2079c65de83701f1ed90ed6636d64b41b673d3281cc5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ce1f046a1af32dd3c1240be3689673b470b0569fab3b1551189202e3440c3764
MD5 6526cbb0d9d91db1e13185c94e4af5ec
BLAKE2b-256 7b0c99fc63045c1a088718f63cf74294c0495aba9a4a6341550537399d9f8e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fab367a560feb6071b21c8e2064026e75c78764138bd9d6a8f551bc4c46e1eb0
MD5 e814199697c7e95e64cb35f22d7f1c87
BLAKE2b-256 df3d2b2a30e20cf036a824b42e96faeaf172c360bfdca14533744e08ab6beda9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e51a86bbd1804e639bbfb1103475845b086ed0f321ca40f42115d4c2cc85982
MD5 a47fe3129d5a2c76db1c50e136a09e91
BLAKE2b-256 1a6a5e6a155cba0f6a3a68b2add123deef9373d0fd40dfc77fa33f863106e6da

See more details on using hashes here.

File details

Details for the file depthai-2.18.0.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2b4251b3370b4f7afb6ad9c4349cf3fc273fc22c676ab48847580b3b61d6e1ac
MD5 30db791c95d28fbca19520aaf5e9b3f4
BLAKE2b-256 8ec387b71920f3f71a2e96b784d3916ed0bb78250f03b2a2f7ffbc9dec6f3f02

See more details on using hashes here.

File details

Details for the file depthai-2.18.0.0-cp37-cp37m-linux_armv7l.whl.

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp37-cp37m-linux_armv7l.whl
Algorithm Hash digest
SHA256 3aa406243df46c913b2c04cae3cb166d3eeb6f8ec1a6983228e5987d8c324ff7
MD5 f5b708331929613f85d69c116034e2b4
BLAKE2b-256 dd13969101f4dd7618975d7d161a898364a3e3c6cf33df4e2bc4b476759555bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for depthai-2.18.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a34d0edfb086dd20847137143ddddfcf23e7b6cd07ffe9c2c8d21f837d1cdd01
MD5 d1d81b0a3443fc180181ed757b19fca6
BLAKE2b-256 ab1347c50421a08631e20fecf81e9dc65b96c1623c09cdba21e8fe687ae7180b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: depthai-2.18.0.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.8.10

File hashes

Hashes for depthai-2.18.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e1bb5a5c9f3c329c2f895ea57445d39530d56bebe05ddb96236d15356c166068
MD5 fa47550dbb541157df8d2ea7cd27490f
BLAKE2b-256 cbed2ab9247cc1202bd6d4abdef3b461d8858ac43a5de27d915f9b3c91c199e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00c47febb3c1fb7c17a3a6101e33fc5968c413d3c1b08b5d86139d33fd8d539d
MD5 63ff6709f82a5fd85bfe663f66e3a784
BLAKE2b-256 3c29969b2ae7266ce108b3100e766c5ab11b2211be2d75b9cf618e76086db53a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdfd82c29a9ed68405be3510102c7e8155f3a40d4469a5896794d82869eea9cf
MD5 a75184095dea3d07b0f0a239d2863274
BLAKE2b-256 c8b3f9b244ea04afec98a8b7d9ea940512b15a21d548a2a96c7391c7e4b958f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for depthai-2.18.0.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 609068e823e116705b076d40686603e40fcd54f88cbe5b8acdfc13440ef9f8c3
MD5 2dd3fd71f019ba4d248ace01c8642940
BLAKE2b-256 61323793a9b9c8ff32b8d9e933232d01820b4a397f7d67d58befef5e8452b8ff

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