Files
picar/GestureRecognition/handrecogniser.py
2018-12-18 10:36:33 +10:30

16 lines
374 B
Python

class HandRecogniser:
"""
Interface for Recognising simple hand gestures from an image (or frame of a video)
"""
def load_image(self, image_path = ""):
"""
Loads the given image, can be lazy loading.
"""
pass
def get_gesture(self):
"""
Gets a the gesture recognised in the image.
"""
pass