Playground biometrics demo BioID home page

SOAP Enumeration ClassificationFlags

Enumeration list for the various flags supported by the BWS classification operations like Verify or Identify.

[DataContract(Namespace = "http://schemas.bioid.com/2011/12/bws")]
[Flags]
public enum ClassificationFlags
{
    [EnumMember]
    None = 0x00,
    [EnumMember]
    LiveFaceDetection = 0x01,
    [EnumMember]
    LivePeriocularDetection = 0x02,
    [EnumMember]
    AutoEnrollment = 0x10
}

ClassificationFlags.None

No specific classification flags are specified.

ClassificationFlags.LiveFaceDetection

With this flag the face live data detection gets activated. In this case the operation typically fails, as soon as it cannot undoubtedly determine that the given data is live data.

ClassificationFlags.LivePeriocularDetection

With this flag the periocular live data detection gets activated. In this case the operation typically fails, as soon as it cannot undoubtedly determine that the given data is live data.

ClassificationFlags.AutoEnrollment

Enables automatic enrollment with the verification opreration: in case a verification succeeds, the uploaded samples are automatically enrolled. This ensures that the biometric template of the person is automatically adapted and always "up-to-date". (This flag is ignored with the identification operation.)