From 79aeeffb874b22565bef5c7fea4b32c27258a579 Mon Sep 17 00:00:00 2001 From: Jeff Long Date: Thu, 7 Jan 2016 11:09:05 -0600 Subject: [PATCH] Fix contours example in README `#findContours` needs to be called, not just referenced. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a967eae..69157e9 100755 --- a/README.md +++ b/README.md @@ -206,7 +206,7 @@ functions for accessing, computing with, and altering the contours contained in See [relevant source code](src/Contours.cc) and [examples](examples/) ```javascript -var contours = im.findContours; +var contours = im.findContours(); // Count of contours in the Contours object contours.size();