@mediapipe/tasks-vision 0.10.34 → 0.10.36-rc.20260507
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 +1 -1
- package/vision.d.ts +2 -2
- 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 +160 -170
- package/wasm/vision_wasm_internal.wasm +0 -0
- package/wasm/vision_wasm_module_internal.js +163 -173
- package/wasm/vision_wasm_module_internal.wasm +0 -0
- package/wasm/vision_wasm_nosimd_internal.js +160 -170
- package/wasm/vision_wasm_nosimd_internal.wasm +0 -0
package/package.json
CHANGED
package/vision.d.ts
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
* limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
/** Options to configure MediaPipe model loading and processing. */
|
|
17
|
-
declare interface
|
|
17
|
+
declare interface BaseOptions {
|
|
18
18
|
/**
|
|
19
19
|
* The model path to the model asset file. Only one of `modelAssetPath` or
|
|
20
20
|
* `modelAssetBuffer` can be set.
|
|
@@ -2684,7 +2684,7 @@ declare abstract class TaskRunner {
|
|
|
2684
2684
|
/** Options to configure MediaPipe Tasks in general. */
|
|
2685
2685
|
declare interface TaskRunnerOptions {
|
|
2686
2686
|
/** Options to configure the loading of the model assets. */
|
|
2687
|
-
baseOptions?:
|
|
2687
|
+
baseOptions?: BaseOptions;
|
|
2688
2688
|
}
|
|
2689
2689
|
|
|
2690
2690
|
/** The options for configuring a MediaPipe vision task. */
|