Using FaceSDK with Programming Languages
To access the FaceSDK library functions, you need to use its binary file in your applications. The specific file depends on the platform:
- Windows applications use
facesdk.dll - Linux and Android applications use
libfsdk.so - macOS applications use
libfsdk.dylib - .NET applications use
facesdk.NET.dlland the appropriate binary file (facesdk.dll,libfsdk.dyliborlibfsdk.so) - Java applications use
facesdk.jar,jna.jarand the appropriate binary file (facesdk.dll,libfsdk.dyliborlibfsdk.so) - iOS applications use
libfsdk-static.aorfsdk.framework
On Windows, Linux and macOS it is usually recommended to store this file in the directory where the executable file of your application is located. Alternatively, you may keep the file in:
- the working directory of your application
- the directory specified in the path environment variable of your system:
PATH(Windows),LD_LIBRARY_PATH(Linux),DYLD_LIBRARY_PATH(macOS).
You need to include interface header files into your application project in order to use FaceSDK.