Skip to content

HoboVR-Labs/hobotracker

Repository files navigation

hobotrackers

A library containing various tracking algorithms and implementations.

Current Implementations

blobfinding for eye tracking:

from hobotrackers.trackers.pupil_blobfinder import find_pupil_loop
from hobotrackers.resources import saccade_test


def print_callback(center, radius):
    if center is not None:
        print(f"center: {center}, radius: {radius}")
    else:
        print("blob not found. :(")


find_pupil_loop(saccade_test, print_callback, show=True)

Installation

hobotrackers will be distributed on PyPI as a universal wheel in Python 3.6+ and PyPy.

$ pip install hobotrackers

Usage

API has not been generated yet.

See tests and examples for example usage.

License

hobotrackers is distributed under the terms of

About

tracker algorithms and implementations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages