jscanify 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jscanify",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Open-source Javascript mobile document scanner.",
5
5
  "main": "src/jscanify-node.js",
6
6
  "directories": {
@@ -1,4 +1,4 @@
1
- /*! jscanify v1.3.0 | (c) ColonelParrot and other contributors | MIT License */
1
+ /*! jscanify v1.3.1 | (c) ColonelParrot and other contributors | MIT License */
2
2
 
3
3
  const { Canvas, createCanvas, Image, ImageData } = require("canvas");
4
4
  const { JSDOM } = require("jsdom");
@@ -50,7 +50,7 @@ class jscanify {
50
50
  cv.GaussianBlur(
51
51
  imgGray,
52
52
  imgBlur,
53
- new cv.Size(5, 5),
53
+ new cv.Size(3, 3),
54
54
  0,
55
55
  0,
56
56
  cv.BORDER_DEFAULT
package/src/jscanify.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! jscanify v1.3.0 | (c) ColonelParrot and other contributors | MIT License */
1
+ /*! jscanify v1.3.1 | (c) ColonelParrot and other contributors | MIT License */
2
2
 
3
3
  (function (global, factory) {
4
4
  typeof exports === "object" && typeof module !== "undefined"
@@ -35,7 +35,7 @@
35
35
  cv.GaussianBlur(
36
36
  imgGray,
37
37
  imgBlur,
38
- new cv.Size(5, 5),
38
+ new cv.Size(3, 3),
39
39
  0,
40
40
  0,
41
41
  cv.BORDER_DEFAULT