I made 4 commits for this PR. Let me elaborate on each and let me know what you think.
(refactor to package): Instead of using requirements.txt, I added a pyproject.toml and wrapped the project's code into an L2CS package. Now you can install the code via pip install . and use it as an importable package.
Added CPU mode functionality
Wrapped code into Pipeline class, to provide a nice and clean API
Fixed any issues and updated the README.md
Fixes for multiple head detection (batched format) and visualization of gaze vector (controlling better the gaze vector length).
Hello!
This is my first PR to this repo!
I made 4 commits for this PR. Let me elaborate on each and let me know what you think.
requirements.txt
, I added apyproject.toml
and wrapped the project's code into an L2CS package. Now you can install the code viapip install .
and use it as an importable package.Pipeline
class, to provide a nice and clean API