Define the RecognitionOnly mode in confidence level of F455 device
-
Official comment
Hello Revathi,
RecognitionOnly mode does not run the Anti-Spoofing algorithm as part of authentication. Does this answer your question?
Sincerely,
Jesus G.
Intel Customer SupportComment actions -
Hello Revathi,
The Confidence Levels are defined as SecurityLevel in the RealSenseID API. They are defined in DeviceConfig.h You can configure the device to run in any of those levels in the Settings menu in the rsid-viewer. In the code below, "AS" is Anti-Spoofing.
/**
* @enum SecurityLevel
* @brief SecurityLevel to allow
*/
enum class SecurityLevel
{
High = 0, // high security, no mask support, all AS algo(s) will be activated
Medium = 1, // default mode to support masks, only main AS algo will be activated.
RecognitionOnly = 2 // configures device to run recognition only without AS
};
SecurityLevel security_level = SecurityLevel::Medium;
Please sign in to leave a comment.
Comments
4 comments