GetHardwareId: This API is used to get hardware id of the device on which this SDK is running on
publicStringGetHardwareId()
Activate: This API is used to activate the SDK
publicintActivate(String license)
Init: This API is used to initialize the SDK call these functions
publicintInit(string modelPath)
DetectFace: This API is used to detect faces, face liveness and get face attributes including yaw, roll, pitch, eye closedness, face occlusion, call these functions
public int DetectFace(byte[] rgbData, int width, int height, int stride, [In, Out] ResultBox[] faceBoxes, int faceBoxCount)
Compare: This API is used to get the similarity of two face images
public int Compare(byte[] rgbData1, int width1, int height1, int stride1, byte[] rgbData2, int width2, int height2, int stride2, [In, Out] float[] similarity)