View my account

Comments

4 comments

  • Official comment
    Jesus Garcia

    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 Support

    Comment actions Permalink
  • Revathi

    Hi,

    I want to understand the use of Confidence Level options in Recognition Only mode.

    Thanks,
    Revathi.

    0
    Comment actions Permalink
  • Jesus Garcia

    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;

     

     

    1
    Comment actions Permalink
  • Revathi

    thanks for your reply

    0
    Comment actions Permalink

Please sign in to leave a comment.