1. Install
Ubuntu 20.04 (for servers, desktops)
Correct work of FaceSDK requires read access to the attribute product_uuid udev device dmi/id (usually it's /sys/devices/virtual/dmi/id/product_uuid file)
You will need a login and a password to access FaceSDK package repository.
Please contact Tech5 support (suppo.nosp@m.rt@t.nosp@m.ech5-.nosp@m.sa.c.nosp@m.om) team for getting the access.
- Add Tech5 repository to the system
apt-get -y install wget ca-certificates gnupg2
wget --quiet -O - https://repo.tech5-sa.com/gpg/GPG.pub | apt-key add -
echo 'machine repo.tech5-sa.com/repository/linux-ubuntu-focal-face_sdk/ login' YOUR_LOGIN 'password' YOUR_PASSWORD > /etc/apt/auth.conf.d/tech5-facesdk-repo.conf
echo 'deb https://repo.tech5-sa.com/repository/linux-ubuntu-focal-face_sdk/ focal main' > /etc/apt/sources.list.d/face-sdk.list
apt-get update
- List available packages
apt-cache search tech5-face-sdk
- Install packages
apt-get install <package_name>
Ubuntu 18.04 (for servers, desktops and NVIDIA Jetson devices)
Correct work of FaceSDK on servers and desktops requires read access to the attribute product_uuid udev device dmi/id (usually it's /sys/devices/virtual/dmi/id/product_uuid file)
You will need a login and a password to access FaceSDK package repository.
Please contact Tech5 support (suppo.nosp@m.rt@t.nosp@m.ech5-.nosp@m.sa.c.nosp@m.om) team for getting the access.
- Add Tech5 repository to the system
apt-get -y install wget ca-certificates gnupg2
wget --quiet -O - https://repo.tech5-sa.com/gpg/GPG.pub | apt-key add -
echo 'machine repo.tech5-sa.com/repository/linux-ubuntu-bionic-face_sdk/ login' YOUR_LOGIN 'password' YOUR_PASSWORD > /etc/apt/auth.conf.d/tech5-facesdk-repo.conf
echo 'deb https://repo.tech5-sa.com/repository/linux-ubuntu-bionic-face_sdk/ bionic main' > /etc/apt/sources.list.d/face-sdk.list
apt-get update
- List available packages
apt-cache search tech5-face-sdk
- Install packages
apt-get install <package_name>
Ubuntu 16.04 (for arm64 platforms)
On Ubuntu 16.04 FaceSDK available only for ARM64 architecture
You will need a login and a password to access FaceSDK package repository.
Please contact Tech5 support (suppo.nosp@m.rt@t.nosp@m.ech5-.nosp@m.sa.c.nosp@m.om) team for getting the access.
- Add Tech5 repository to the system
apt-get -y install wget ca-certificates gnupg2 apt-transport-https
wget --quiet -O - https://repo.tech5-sa.com/gpg/GPG.pub | apt-key add -
echo 'machine repo.tech5-sa.com/repository/linux-ubuntu-xenial-face_sdk/ login' YOUR_LOGIN 'password' YOUR_PASSWORD > /etc/apt/auth.conf.d/tech5-facesdk-repo.conf
echo 'deb https://repo.tech5-sa.com/repository/linux-ubuntu-xenial-face_sdk/ xenial main' > /etc/apt/sources.list.d/face-sdk.list
apt-get update
- List available packages
apt-cache search tech5-face-sdk
- Install packages
apt-get install <package_name>
Centos 7 (for servers and desktops)
Correct work of FaceSDK requires read access to the attribute product_uuid udev device dmi/id (usually it's /sys/devices/virtual/dmi/id/product_uuid file)
You will need a login and a password to access FaceSDK package repository.
Please contact Tech5 support (suppo.nosp@m.rt@t.nosp@m.ech5-.nosp@m.sa.c.nosp@m.om) team for getting the access.
- Add Tech5 repository to the system
curl -s -XGET -u YOUR_LOGIN:'YOUR_PASSWORD' https://repo.tech5-sa.com/repository/rpm-centos7/config.repo -o /etc/yum.repos.d/tech5-face_sdk.repo
yum repolist
- List available packages
yum repo-pkgs tech5-facesdk list
- Install packages
yum install <package_name>
for GPU builds
NVIDIA drivers are not required for NVIDIA Jetson devices
Windows
for GPU builds
Android
*
Two builds are available for each Android architecture since FaceSDK 1.11.0. For applications which are targeted to API 21-28 build with suffix "_api21" is preffered, for applications which are targeted to API 29+ build with suffix "_api29" is preffered.
**
FaceSDK requires initializaion with Android Context before calling any method. You have to add file FaceSDK.java
to your project and call FaceSDK.InitContext()
method to initialize FaceSDK. You can find FaceSDK.java
file in the downloaded archive.
Embedded linux
Archive contains C/C++ headers, prebuilt binaries and algorithms binary files.
2. Get the license
How to get the license
3. Try face_sdk_utils
face_sdk_utils guide
4. Learn docs and see examples
Docs
Examples