From f8459e0acd20ae009ba54796ca821fbbde75dbb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salom=C3=A3o=20Rodrigues?= Date: Sun, 5 Mar 2017 20:26:43 +0000 Subject: [PATCH] Update contours.js --- examples/contours.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/contours.js b/examples/contours.js index c8906bd..5881c32 100755 --- a/examples/contours.js +++ b/examples/contours.js @@ -24,7 +24,7 @@ cv.readImage('./files/stuff.png', function(err, im) { im_canny.canny(lowThresh, highThresh); im_canny.dilate(nIters); - contours = im_canny.findContours(); + var contours = im_canny.findContours(); const lineType = 8; const maxLevel = 0; const thickness = 1;