Metadata-Version: 2.1
Name: gesys
Version: 1.1.13
Summary: Control your computer with gestures.
Home-page: https://github.com/ArtemLetyagin/Gesys
Author: Gesys
Author-email: a.letyagin1@gmail.com
License: UNKNOWN
Project-URL: GitHub, https://github.com/ArtemLetyagin/Gesys
Keywords: gesture gestures control
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# Gesys
Gesys is an evolving module that provides a high-level API for recognizing hand gestures using a webcam

# Get started
**Install gesys module**
```python
pip install gesys
```
**Run simple example**
```python
from Gesys.gesys import GesysStatic
import cv2

FPS = 10 # choose FPS
gs = GesysStatic(10) # create recognizer
cap = cv2.VideoCapture(0)

while True:
    # 1. get a frame from the camera
    _, frame = cap.read()

    # 2. recognize gesture
    gesture = gs.frame(frame) 
    
    # 3. print the gesture if it is not trash
    if(gesture != 'thrash'):
        print(gesture)

    cv2.imshow('w', frame)
    if(cv2.waitKey(1)>0):
        break
cv2.destroyAllWindows()

```


