Tools for interacting with the HuskyLens AI camera
Project description
About
huskytools provides tools for interacting with the HuskyLens AI camera.
Features
-
Low-level API for interacting with the HuskyLens camera. It's meant as a replacement for the official HuskyLens Python API. It's not a drop-in replacement but all the functionality, except for I2C-support, is there.
-
A command line interface for quick testing and debugging.[NOT IMPLEMENTED YET]
-
Helper classes for working with the HuskyLens camera, e.g. a class for working with faces. [NOT IMPLEMENTED YET]
Installation
huskytools is available on PyPI, so you can install it with pip:
pip install huskytools
Alternatively, you can install the latest development version of huskytools by cloning the repository and install it with pip:
git clone https://github.com/Andreasdahlberg/husky-tools.git
cd husky-tools
pip install .
Usage
API
This example shows how to connect to the HuskyLens.
from huskytools import huskylens
with huskylens.Interface("/dev/ttyUSB0") as lens:
if lens.knock():
print("HuskyLens connected")
else:
print("HuskyLens not found")
This example shows how to get all detected faces from the HuskyLens.
from huskytools import huskylens
with huskylens.Interface("/dev/ttyUSB0") as lens:
if lens.knock():
lens.set_algorithm(huskylens.RecognitionAlgorithm.FACE_RECOGNITION)
for block in lens.get_blocks():
print("Block ID: {}, X: {}, Y: {}".format(block.id, block.x, block.y))
Command line interface
NOT IMPLEMENTED YET
Helper classes
NOT IMPLEMENTED YET
Contributing
Contributions are welcome. Please open an issue or a pull request on GitHub.
Support
If you have any questions or problems, please open an issue on GitHub and i will be happy to help.
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
Built Distribution
File details
Details for the file huskytools-0.2.1.tar.gz
.
File metadata
- Download URL: huskytools-0.2.1.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87547f937b6e38ed8a2a96b2d15066b3cf619247c874aa30b03c180f50f39a14 |
|
MD5 | d64d03101a92fabc0f817a142e1496f2 |
|
BLAKE2b-256 | f4bd18a490a3fe369e295a148dcbc8051272b04312c6d0a59d65d8b826a3d66b |
File details
Details for the file huskytools-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: huskytools-0.2.1-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e9631c0343ea499b3ae812f869bee3bb0e68d1eda2ea90bb33aa1333ea668b5 |
|
MD5 | e56e1fedfa7a5834ac4e71e3c3fa48df |
|
BLAKE2b-256 | ee5b909e8b3e925707f089f35b86484dd1564e86396f36b98550ea11654a72af |