deepar 5.3.0 → 5.3.1-rigid-face-alpha-2

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.
@@ -70,9 +70,33 @@ export interface DeepARParams {
70
70
  */
71
71
  faceTrackingConfig?: {
72
72
  /**
73
- * Path to the face tracking model. Something like "path/to/deepar/models/face/models-68-extreme.bin".
73
+ * Path to the pose libPoseEstimation.wasm file, e.g. "/path/to/deepar/wasm/libPoseEstimation.wasm".
74
74
  */
75
- modelPath: string;
75
+ poseEstimationWasmPath?: string;
76
+ /**
77
+ * Path to the detector model, e.g. "/path/to/deepar/models/foot/foot-detector.bin".
78
+ */
79
+ detectorPath?: string;
80
+ /**
81
+ * Path to the tracker model, e.g. "/path/to/deepar/models/foot/foot-tracker.bin".
82
+ */
83
+ trackerPath?: string;
84
+ /**
85
+ * Path to the foot model object file, e.g. "/path/to/deepar/models/foot/foot-model.obj".
86
+ */
87
+ objPath?: string;
88
+ /**
89
+ * Path to tfjs-backend-wasm.wasm file, e.g. "path/to/deepar/wasm/tfjs-backend-wasm.wasm"
90
+ */
91
+ tfjsBackendWasmPath?: string;
92
+ /**
93
+ * Path to tfjs-backend-wasm-simd.wasm file, e.g. "path/to/deepar/wasm/tfjs-backend-wasm-simd.wasm"
94
+ */
95
+ tfjsBackendWasmSimdPath?: string;
96
+ /**
97
+ * Path to tfjs-backend-wasm-threaded-simd.wasm file, e.g. "path/to/deepar/wasm/tfjs-backend-wasm-threaded-simd.wasm"
98
+ */
99
+ tfjsBackendWasmThreadedSimdPath?: string;
76
100
  };
77
101
  /**
78
102
  * Segmentation module path and options.
@@ -1,5 +1,5 @@
1
1
  /**
2
2
  * DeepAR Web SDK version.
3
3
  */
4
- declare const version = "5.3.0";
4
+ declare const version = "5.3.1-rigid-face-alpha-2";
5
5
  export { version };
Binary file