@mediapipe/tasks-vision 0.10.6 → 0.10.7
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/package.json +2 -2
- package/vision.d.ts +1 -0
- package/vision_bundle.cjs +1 -1
- package/vision_bundle.cjs.map +1 -1
- package/vision_bundle.mjs +1 -1
- package/vision_bundle.mjs.map +1 -1
- package/wasm/vision_wasm_internal.js +5 -7
- package/wasm/vision_wasm_internal.wasm +0 -0
- package/wasm/vision_wasm_nosimd_internal.js +5 -7
- package/wasm/vision_wasm_nosimd_internal.wasm +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediapipe/tasks-vision",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.7",
|
|
4
4
|
"description": "MediaPipe Vision Tasks",
|
|
5
5
|
"main": "vision_bundle.cjs",
|
|
6
6
|
"browser": "vision_bundle.mjs",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"import": "./vision_bundle.mjs",
|
|
10
10
|
"require": "./vision_bundle.cjs",
|
|
11
11
|
"default": "./vision_bundle.mjs",
|
|
12
|
-
"types": "./
|
|
12
|
+
"types": "./vision.d.ts"
|
|
13
13
|
},
|
|
14
14
|
"author": "mediapipe@google.com",
|
|
15
15
|
"license": "Apache-2.0",
|
package/vision.d.ts
CHANGED
|
@@ -401,6 +401,7 @@ export declare class FaceDetector extends VisionTaskRunner {
|
|
|
401
401
|
* synchronously for the response. Only use this method when the
|
|
402
402
|
* FaceDetector is created with running mode `image`.
|
|
403
403
|
*
|
|
404
|
+
* @export
|
|
404
405
|
* @param image An image to process.
|
|
405
406
|
* @param imageProcessingOptions the `ImageProcessingOptions` specifying how
|
|
406
407
|
* to process the input image before running inference.
|