Implementing stuff (I suck at commits sometimes lol)
This commit is contained in:
15
GestureRecognition/handrecogniser.py
Normal file
15
GestureRecognition/handrecogniser.py
Normal 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
|
||||
Reference in New Issue
Block a user