From a3d04aad3df417137d355407b06f6ebbd9eb201f Mon Sep 17 00:00:00 2001 From: Michael Pivato Date: Sun, 27 Jan 2019 23:42:10 +1030 Subject: [PATCH] Fix feed_dict to have colon instead of comma. --- GestureRecognition/SimpleHandRecogniser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GestureRecognition/SimpleHandRecogniser.py b/GestureRecognition/SimpleHandRecogniser.py index 1bc77a7..e3f1810 100644 --- a/GestureRecognition/SimpleHandRecogniser.py +++ b/GestureRecognition/SimpleHandRecogniser.py @@ -213,7 +213,7 @@ class SimpleHandRecogniser(HandRecogniser): (boxes, scores, classes, num) = sess.run( [detection_boxes, detection_scores, detection_classes, num_detections], - feed_dict={image_tensor, img_expanded}) + feed_dict={image_tensor: img_expanded}) print('finished detection') return np.squeeze(boxes), np.squeeze(scores)