deepar 5.6.10 → 5.6.11-faceTrackingCnn-alpha-284
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/VERSION.txt +1 -1
- package/js/deepar.esm.js +1 -1
- package/js/deepar.js +1 -1
- package/js/dynamicModules/xzimg.js +1 -1
- package/js/types/initParams.d.ts +34 -0
- package/js/types/version.d.ts +1 -1
- package/models/face-cnn/face-pdm.zip +0 -0
- package/models/face-cnn/face-track.bin +0 -0
- package/models/face-cnn/face.obj +4571 -0
- package/package.json +1 -1
- package/wasm/deepar.wasm +0 -0
- package/wasm/dyArcorePhysics.wasm +0 -0
- package/wasm/dyArcoreScripting.wasm +0 -0
package/js/types/initParams.d.ts
CHANGED
|
@@ -143,6 +143,40 @@ export interface DeepARParams {
|
|
|
143
143
|
*/
|
|
144
144
|
tfjsBackendWasmThreadedSimdPath?: string;
|
|
145
145
|
};
|
|
146
|
+
faceTrackingCnnConfig?: {
|
|
147
|
+
/**
|
|
148
|
+
* Path to the pose libPoseEstimation.wasm file, e.g. "/path/to/deepar/wasm/libPoseEstimation.wasm".
|
|
149
|
+
*/
|
|
150
|
+
poseEstimationWasmPath?: string;
|
|
151
|
+
/**
|
|
152
|
+
* Path to the detector model, e.g. "/path/to/deepar/models/face-cnn/face-det.bin".
|
|
153
|
+
*/
|
|
154
|
+
detectorPath?: string;
|
|
155
|
+
/**
|
|
156
|
+
* Path to the tracker model, e.g. "/path/to/deepar/models/face-cnn/face-track.bin".
|
|
157
|
+
*/
|
|
158
|
+
trackerPath?: string;
|
|
159
|
+
/**
|
|
160
|
+
* Path to the face model object file, e.g. "/path/to/deepar/models/face-cnn/face.obj".
|
|
161
|
+
*/
|
|
162
|
+
objPath?: string;
|
|
163
|
+
/**
|
|
164
|
+
* Path to pdm zip, e.g. "/path/to/deepar/models/face-cnn/face-pdm.zip".
|
|
165
|
+
*/
|
|
166
|
+
pdmZipPath?: string;
|
|
167
|
+
/**
|
|
168
|
+
* Path to tfjs-backend-wasm.wasm file, e.g. "path/to/deepar/wasm/tfjs-backend-wasm.wasm"
|
|
169
|
+
*/
|
|
170
|
+
tfjsBackendWasmPath?: string;
|
|
171
|
+
/**
|
|
172
|
+
* Path to tfjs-backend-wasm-simd.wasm file, e.g. "path/to/deepar/wasm/tfjs-backend-wasm-simd.wasm"
|
|
173
|
+
*/
|
|
174
|
+
tfjsBackendWasmSimdPath?: string;
|
|
175
|
+
/**
|
|
176
|
+
* Path to tfjs-backend-wasm-threaded-simd.wasm file, e.g. "path/to/deepar/wasm/tfjs-backend-wasm-threaded-simd.wasm"
|
|
177
|
+
*/
|
|
178
|
+
tfjsBackendWasmThreadedSimdPath?: string;
|
|
179
|
+
};
|
|
146
180
|
/**
|
|
147
181
|
* Segmentation module path and options.
|
|
148
182
|
*/
|
package/js/types/version.d.ts
CHANGED
|
Binary file
|
|
Binary file
|