@@ -45,23 +45,25 @@ $ make -j
45
45
46
46
The following possible options are available for the ` cmake ` command
47
47
48
- | Option | Default | Feature |
49
- | ----------------------| :-------:| :-------------------------------------------------|
50
- | ` RSID_DEBUG_CONSOLE ` | ` ON ` | Log everything to console |
51
- | ` RSID_DEBUG_FILE ` | ` OFF ` | Log everything to _ rsid_debug.log_ file |
52
- | ` RSID_DEBUG_SERIAL ` | ` OFF ` | Log all serial communication |
53
- | ` RSID_DEBUG_PACKETS ` | ` OFF ` | Log packet sent/received over the serial line |
54
- | ` RSID_DEBUG_VALUES ` | ` OFF ` | Replace default common values with debug ones |
55
- | ` RSID_PREVIEW ` | ` OFF ` | Enables preview feature. |
56
- | ` RSID_SAMPLES ` | ` OFF ` | Build samples |
57
- | ` RSID_TIDY ` | ` OFF ` | Enable clang-tidy |
58
- | ` RSID_PEDANTIC ` | ` OFF ` | Enable extra compiler warnings |
59
- | ` RSID_PROTECT_STACK ` | ` OFF ` | Enable stack protection compiler flags |
60
- | ` RSID_DOXYGEN ` | ` OFF ` | Build doxygen docs |
61
- | ` RSID_SECURE ` | ` OFF ` | Enable secure communication with device |
62
- | ` RSID_TOOLS ` | ` ON ` | Build additional tools |
63
- | ` RSID_PY ` | ` OFF ` | Build python wrapper |
64
- | ` RSID_INSTALL ` | ` OFF ` | Generate the install target and rsidConfig.cmake |
48
+ | Option | Default | Feature |
49
+ | ----------------------| :-------:| :-----------------------------------------------------------|
50
+ | ` RSID_DEBUG_CONSOLE ` | ` ON ` | Log everything to console |
51
+ | ` RSID_DEBUG_FILE ` | ` OFF ` | Log everything to _ rsid_debug.log_ file |
52
+ | ` RSID_DEBUG_SERIAL ` | ` OFF ` | Log all serial communication |
53
+ | ` RSID_DEBUG_PACKETS ` | ` OFF ` | Log packet sent/received over the serial line |
54
+ | ` RSID_DEBUG_VALUES ` | ` OFF ` | Replace default common values with debug ones |
55
+ | ` RSID_PREVIEW ` | ` OFF ` | Enables preview feature. |
56
+ | ` RSID_SAMPLES ` | ` OFF ` | Build samples |
57
+ | ` RSID_TIDY ` | ` OFF ` | Enable clang-tidy |
58
+ | ` RSID_PEDANTIC ` | ` OFF ` | Enable extra compiler warnings |
59
+ | ` RSID_PROTECT_STACK ` | ` OFF ` | Enable stack protection compiler flags |
60
+ | ` RSID_DOXYGEN ` | ` OFF ` | Build doxygen docs |
61
+ | ` RSID_SECURE ` | ` OFF ` | Enable secure communication with device |
62
+ | ` RSID_TOOLS ` | ` ON ` | Build additional tools |
63
+ | ` RSID_PY ` | ` OFF ` | Build python wrapper |
64
+ | ` RSID_INSTALL ` | ` OFF ` | Generate the install target and rsidConfig.cmake |
65
+ | ` RSID_NETWORK ` | ` ON ` | Enable networking. Required for license and update checker.|
66
+
65
67
66
68
### Linux Post Install
67
69
@@ -375,17 +377,7 @@ struct RSID_API DeviceConfig
375
377
SpoofOnly = 2, // spoof only
376
378
RecognitionOnly = 3 // recognition only
377
379
};
378
-
379
- /**
380
- * @enum FaceSelectionPolicy
381
- * @brief To run authentication on all (up to 5) detected faces vs single (closest) face
382
- */
383
- enum class FaceSelectionPolicy
384
- {
385
- Single = 0, // default, run authentication on closest face
386
- All = 1 // run authentication on all (up to 5) detected faces
387
- };
388
-
380
+
389
381
enum class DumpMode
390
382
{
391
383
None = 0,
@@ -395,8 +387,7 @@ struct RSID_API DeviceConfig
395
387
396
388
CameraRotation camera_rotation = CameraRotation::Rotation_0_Deg;
397
389
SecurityLevel security_level = SecurityLevel::Medium;
398
- AlgoFlow algo_flow = AlgoFlow::All;
399
- FaceSelectionPolicy face_selection_policy = FaceSelectionPolicy::Single;
390
+ AlgoFlow algo_flow = AlgoFlow::All;
400
391
DumpMode dump_mode = DumpMode::None;
401
392
};
402
393
```
0 commit comments