From e08421357829b4557f20eae0b765dd6ec86896c3 Mon Sep 17 00:00:00 2001 From: Sen Date: Mon, 25 Jul 2016 16:48:51 -0400 Subject: [PATCH] Remove test temp png for visual debug --- test/unit.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/unit.js b/test/unit.js index e49a0c4..a95bbcf 100755 --- a/test/unit.js +++ b/test/unit.js @@ -383,10 +383,6 @@ test('MatchTemplateByMatrix', function(assert) { res = target.matchTemplateByMatrix(template, TM_CCORR_NORMED); minMax = res.minMaxLoc(); topLeft = minMax.maxLoc; - target.save("./target.png"); - template.save("./template.png"); - // res.rectangle([topLeft.x, topLeft.y], [template.width(), template.height()], [0, 255,0], 2); - res.save("./result.png"); assert.ok(topLeft, "Canny edge Found Match"); assert.equal(topLeft.x, 42, "match location x === 42"); assert.equal(topLeft.y, 263, "match location y === 263");