From deab5c9b24c97a50585ac55f52635181c031d6dd Mon Sep 17 00:00:00 2001 From: "DSTO\\pivatom" Date: Tue, 18 Dec 2018 10:36:33 +1030 Subject: [PATCH] Give default value to image_path when loading. --- GestureRecognition/handrecogniser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GestureRecognition/handrecogniser.py b/GestureRecognition/handrecogniser.py index 832946f..40d279e 100644 --- a/GestureRecognition/handrecogniser.py +++ b/GestureRecognition/handrecogniser.py @@ -2,7 +2,7 @@ class HandRecogniser: """ Interface for Recognising simple hand gestures from an image (or frame of a video) """ - def load_image(self, image_path): + def load_image(self, image_path = ""): """ Loads the given image, can be lazy loading. """