issue-43: updated readme to 0.6.7

This commit is contained in:
Christoph Oberhofer
2015-06-09 22:22:56 +02:00
parent d799ee353e
commit 1e8eaa9be2
4 changed files with 25 additions and 13 deletions
+3 -2
View File
@@ -5010,7 +5010,7 @@ define('cv_utils',['cluster', 'glMatrixAddon', "array_helper"], function(Cluster
CVUtils._parseCSSDimensionValues = function(value) {
var dimension = {
value: parseFloat(value),
unit: value.indexOf("%") === value.length-1 ? "%" : "px"
unit: value.indexOf("%") === value.length-1 ? "%" : "%"
};
return dimension;
@@ -6574,7 +6574,8 @@ function(ImageWrapper, CVUtils, Rasterizer, Tracer, skeletonizer, ArrayHelper, I
};
patchSize = CVUtils.calculatePatchSize(config.patchSize, size);
console.log("patchSize:", patchSize);
console.log("Patch-Size: " + JSON.stringify(patchSize));
inputStream.setWidth(Math.floor(Math.floor(size.x/patchSize.x)*(1/halfSample)*patchSize.x));
inputStream.setHeight(Math.floor(Math.floor(size.y/patchSize.y)*(1/halfSample)*patchSize.y));
+3 -3
View File
File diff suppressed because one or more lines are too long