Implementing stuff (I suck at commits sometimes lol)

This commit is contained in:
DSTO\pivatom
2018-12-13 11:00:27 +10:30
parent 750624fe2b
commit 6f0bd56b4a
9 changed files with 146 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
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