bry-biometric-collector 3.1.1 → 3.2.0-RC02
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/README.md +11 -0
- package/dist/{DocumentCollector_8012ed16_3.1.1.js → DocumentCollector_1ae96038_3.2.0-RC02.js} +386 -382
- package/dist/FaceCollector_7884c9cd_3.2.0-RC02.js +2350 -0
- package/dist/{ValidationAlert_1d046b33_3.1.1.js → ValidationAlert_33863a07_3.2.0-RC02.js} +40 -40
- package/dist/{___vite-browser-external_commonjs-proxy_85cb5597_3.1.1.js → ___vite-browser-external_commonjs-proxy_e8203409_3.2.0-RC02.js} +1 -1
- package/dist/bry-biometric-collector-main.js +2 -2
- package/dist/{fingersApi_42f58c57_3.1.1.js → fingersApi_9cb185fc_3.2.0-RC02.js} +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2 -2
- package/dist/{index_51d91852_3.1.1.js → index_bb7b43f8_3.2.0-RC02.js} +3 -3
- package/dist/{index_9ac1b157_3.1.1.js → index_ca59aa8a_3.2.0-RC02.js} +3 -3
- package/dist/{main_de63cee6_3.1.1.js → main_d9a89a09_3.2.0-RC02.js} +4866 -4790
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/FaceCollector_d821db28_3.1.1.js +0 -2241
- /package/dist/{en-us_e83efd5d_3.1.1.js → en-us_e83efd5d_3.2.0-RC02.js} +0 -0
- /package/dist/{es-cl_5939150a_3.1.1.js → es-cl_5939150a_3.2.0-RC02.js} +0 -0
- /package/dist/{face_api_0e3ce8c8_3.1.1.js → face_api_0e3ce8c8_3.2.0-RC02.js} +0 -0
- /package/dist/{index-idlf-detector_39cfdffa_3.1.1.js → index-idlf-detector_39cfdffa_3.2.0-RC02.js} +0 -0
- /package/dist/{index-idlf-detector_a819b3c8_3.1.1.js → index-idlf-detector_a819b3c8_3.2.0-RC02.js} +0 -0
- /package/dist/{pt-br_fae15356_3.1.1.js → pt-br_fae15356_3.2.0-RC02.js} +0 -0
package/README.md
CHANGED
@@ -245,6 +245,17 @@ Currently supported tag parameters:
|
|
245
245
|
|
246
246
|
Example: `show_watermark=false`
|
247
247
|
|
248
|
+
- **face_detection_sensitivity**: Defines the level of strictness for face detection based on the confidence score returned by the model. Higher sensitivity requires higher confidence to validate a face.
|
249
|
+
|
250
|
+
Accepted values:
|
251
|
+
- `permissive`: Accepts faces with low detection confidence (score ≥ 0.2). Accepts less confident but potentially valid detections.
|
252
|
+
- `medium`: Balanced threshold (score ≥ 0.4). Balanced for general use.
|
253
|
+
- `strict`: Requires high confidence to validate a face (score ≥ 0.6). Stricter, reduces false positives.
|
254
|
+
|
255
|
+
Default: `permissive`
|
256
|
+
|
257
|
+
Example: `face_detection_sensitivity=strict`
|
258
|
+
|
248
259
|
### **Run-time Configuration**
|
249
260
|
|
250
261
|
#### **Functions**
|