@zappar/zappar-cv 0.4.0-beta.3 → 0.4.0-beta.9
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.
- package/CHANGELOG.md +79 -34
- package/README.md +2 -2
- package/lib/camera-source-map.d.ts +10 -0
- package/lib/camera-source-map.js +40 -0
- package/lib/camera-source.d.ts +2 -5
- package/lib/camera-source.js +3 -13
- package/lib/compatibility.js +1 -1
- package/lib/drawcamera.js +2 -1
- package/lib/gen/zappar-client.js +6 -1
- package/lib/gen/zappar-cwrap.js +37 -21
- package/lib/gen/zappar-native.d.ts +11 -0
- package/lib/gen/zappar-native.js +13 -1
- package/lib/gen/zappar-server.js +1 -1
- package/lib/gen/zappar.d.ts +5 -0
- package/lib/gen/zappar.js +5 -3
- package/lib/gfx.d.ts +1 -0
- package/lib/gfx.js +4 -0
- package/lib/gl-state-manager.d.ts +9 -0
- package/lib/gl-state-manager.js +35 -0
- package/lib/html-element-source.d.ts +3 -20
- package/lib/html-element-source.js +19 -263
- package/lib/image-process-gl.d.ts +37 -0
- package/lib/image-process-gl.js +298 -0
- package/lib/imagebitmap-camera-source.d.ts +36 -0
- package/lib/imagebitmap-camera-source.js +277 -0
- package/lib/mstp-camera-source.d.ts +29 -0
- package/lib/mstp-camera-source.js +230 -0
- package/lib/native.js +45 -8
- package/lib/pipeline.d.ts +13 -3
- package/lib/pipeline.js +95 -26
- package/lib/profile.d.ts +2 -0
- package/lib/profile.js +55 -44
- package/lib/sequencerecorder.d.ts +1 -0
- package/lib/sequencerecorder.js +11 -0
- package/lib/sequencesource.d.ts +7 -1
- package/lib/sequencesource.js +89 -47
- package/lib/source.d.ts +6 -4
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/lib/worker-client.js +0 -5
- package/lib/worker-imagebitmap.d.ts +5 -0
- package/lib/worker-imagebitmap.js +63 -0
- package/lib/worker-server.d.ts +0 -5
- package/lib/worker-server.js +120 -24
- package/lib/workerinterface.d.ts +47 -1
- package/lib/zcv.js +117 -135
- package/lib/zcv.wasm +0 -0
- package/package.json +34 -31
- package/umd/a78f5ad0a44def457ee50c8bcd5fd27c.wasm +0 -0
- package/umd/zappar-cv.js +1 -9
- package/umd/zappar-cv.worker.js +1 -1
- package/lib/SLAM_Worker.js +0 -16
- package/lib/SLAM_Worker.wasm +0 -0
- package/lib/bundleworker-mainthread.d.ts +0 -2
- package/lib/bundleworker-mainthread.js +0 -36
- package/lib/bundleworker-worker.d.ts +0 -6
- package/lib/bundleworker-worker.js +0 -34
- package/umd/1ec038c18c27f4adf35917a8175401f0.wasm +0 -0
- package/umd/427496550eba276b65c7.bundleworker.js +0 -1
- package/umd/d115e485cffe500afc4f7c1272ea8f62.wasm +0 -0
package/lib/zcv.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zappar/zappar-cv",
|
|
3
|
-
"version": "0.4.0-beta.
|
|
3
|
+
"version": "0.4.0-beta.9",
|
|
4
4
|
"description": "Zappar's core computer vision library, supporting image, face and world tracking.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"build-module": "tsc",
|
|
11
11
|
"test-module": "jest puppeteer/module",
|
|
12
12
|
"test-standalone": "jest puppeteer/standalone",
|
|
13
|
-
"tests": "webpack --config=webpack.tests.config.js --mode=development && webpack
|
|
14
|
-
"webpack-puppeteer": "webpack --config=webpack.config.puppeteer.js --mode=development && webpack
|
|
13
|
+
"tests": "webpack --config=webpack.tests.config.js --mode=development && webpack serve --mode=development --config=webpack.tests.config.js",
|
|
14
|
+
"webpack-puppeteer": "webpack --config=webpack.config.puppeteer.js --mode=development && webpack serve --config=webpack.config.puppeteer.js",
|
|
15
15
|
"standalone-test-serve": "concurrently 'zapworks serve --port 7010 umd' 'zapworks serve --port 7011 puppeteer-standalone-dist' || true",
|
|
16
16
|
"standalone-test-serve2": "zapworks serve --port 7011 puppeteer-standalone-dist"
|
|
17
17
|
},
|
|
@@ -25,36 +25,39 @@
|
|
|
25
25
|
"upkg": "umd/zappar-cv.js",
|
|
26
26
|
"license": "Proprietary",
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@types/
|
|
29
|
-
"@types/
|
|
30
|
-
"@types/
|
|
31
|
-
"@types/
|
|
32
|
-
"@types/
|
|
33
|
-
"@types/
|
|
34
|
-
"@
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
28
|
+
"@types/dom-mediacapture-transform": "^0.1.1",
|
|
29
|
+
"@types/dom-webcodecs": "^0.1.2",
|
|
30
|
+
"@types/expect-puppeteer": "4.4.5",
|
|
31
|
+
"@types/jest-environment-puppeteer": "4.4.1",
|
|
32
|
+
"@types/node": "14.14.7",
|
|
33
|
+
"@types/offscreencanvas": "^2019.6.4",
|
|
34
|
+
"@types/pixelmatch": "5.2.2",
|
|
35
|
+
"@types/pngjs": "6.0.0",
|
|
36
|
+
"@types/puppeteer": "5.4.3",
|
|
37
|
+
"@zappar/zapworks-cli": "0.6.17",
|
|
38
|
+
"concurrently": "5.3.0",
|
|
39
|
+
"dat.gui": "0.7.7",
|
|
40
|
+
"html-webpack-plugin": "4.5.0",
|
|
41
|
+
"jest": "26.6.3",
|
|
42
|
+
"jest-puppeteer": "4.4.0",
|
|
43
|
+
"jsdoc": "3.6.7",
|
|
44
|
+
"pixelmatch": "5.2.1",
|
|
45
|
+
"pngjs": "6.0.0",
|
|
46
|
+
"puppeteer": "7.1.0",
|
|
47
|
+
"ts-jest": "26.5.1",
|
|
48
|
+
"ts-loader": "8.0.11",
|
|
49
|
+
"ts-node": "9.1.1",
|
|
50
|
+
"typescript": "4.0.5",
|
|
51
|
+
"webpack": "4.46.0",
|
|
52
|
+
"webpack-cli": "4.9.1",
|
|
53
|
+
"webpack-dev-server": "3.11.2"
|
|
51
54
|
},
|
|
52
55
|
"dependencies": {
|
|
53
|
-
"@types/gl-matrix": "
|
|
54
|
-
"@types/ua-parser-js": "
|
|
55
|
-
"file-loader": "
|
|
56
|
+
"@types/gl-matrix": "2.4.5",
|
|
57
|
+
"@types/ua-parser-js": "0.7.33",
|
|
58
|
+
"file-loader": "6.2.0",
|
|
56
59
|
"gl-matrix": "3.1.0",
|
|
57
|
-
"ua-parser-js": "
|
|
58
|
-
"worker-loader": "
|
|
60
|
+
"ua-parser-js": "0.7.30",
|
|
61
|
+
"worker-loader": "3.0.5"
|
|
59
62
|
}
|
|
60
63
|
}
|
|
Binary file
|