Fixed an error in the debug view

This commit is contained in:
Christoph Oberhofer
2014-11-12 22:03:36 +01:00
parent 272d75ed40
commit f053c72694
4 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -5909,7 +5909,7 @@ function(ImageWrapper, CVUtils, Rasterizer, Tracer, skeletonizer, ArrayHelper, I
if (_config.showFoundPatches) {
for ( i = 0; i < patchesFound.length; i++) {
patch = patchesFound[i];
ImageDebug.drawRect(patch.pos, _subImageWrapper.size, _canvasContainer.ctx.binary, {color: "99ff00", lineWidth: 2});
ImageDebug.drawRect(patch.pos, _subImageWrapper.size, _canvasContainer.ctx.binary, {color: "#99ff00", lineWidth: 2});
}
}
+2 -2
View File
File diff suppressed because one or more lines are too long