Face SDK  1.13.0 Mozart release
Face Recognition Software Development Kit
Classes | Functions
Java interface

Classes

class  com.tech5.FaceSDK.FaceRecognition.Native
 
class  com.tech5.FaceSDK.FaceRecognition
 
class  com.tech5.FaceSDK.Tracker
 
class  com.tech5.FaceSDK.TrackerConfig
 
interface  com.tech5.FaceSDK.TrackerEvents
 
class  com.tech5.FaceSDK.VideoStream
 

Functions

 com.tech5.FaceSDK.FaceRecognition.FaceRecognition (int version, License license, DataContainer dataContainer, int batchSize, int computeDevice) throws FaceSDKException
 
 com.tech5.FaceSDK.FaceRecognition.FaceRecognition (int version, License license, int batchSize, int computeDevice) throws FaceSDKException
 
 com.tech5.FaceSDK.FaceRecognition.FaceRecognition (int version, DataContainer dataContainer, int batchSize, int computeDevice) throws FaceSDKException
 
 com.tech5.FaceSDK.FaceRecognition.FaceRecognition (int version, int batchSize, int computeDevice) throws FaceSDKException
 
boolean com.tech5.FaceSDK.FaceRecognition.equals (Object o)
 
int com.tech5.FaceSDK.FaceRecognition.hashCode ()
 
void com.tech5.FaceSDK.FaceRecognition.close () throws Exception
 
void com.tech5.FaceSDK.FaceRecognition.finalize () throws Throwable
 

Detailed Description

Function Documentation

◆ FaceRecognition() [1/4]

com.tech5.FaceSDK.FaceRecognition.FaceRecognition ( int  version,
License  license,
DataContainer  dataContainer,
int  batchSize,
int  computeDevice 
) throws FaceSDKException
inline

Creates the object with needed version, license, data container, batch size and compute device.

Parameters
versionrequired version of the algorithm.
licensethe license object.
dataContainerthe license object.
batchSizethe batch size.
computeDevicethe compute device. -1 = CPU. 0, 1, ..., N - GPU device.
Exceptions
IllegalArgumentExceptionif license is null or dataContainer is null.
FaceSDKExceptionin case of an error in native code.

◆ FaceRecognition() [2/4]

com.tech5.FaceSDK.FaceRecognition.FaceRecognition ( int  version,
License  license,
int  batchSize,
int  computeDevice 
) throws FaceSDKException
inline

Creates the object with needed version, license, batch size and compute device.
The data container is loaded from known paths.

Parameters
versionrequired version of the algorithm.
licensethe license object.
batchSizethe batch size.
computeDevicethe compute device. -1 = CPU. 0, 1, ..., N - GPU device.
Exceptions
IllegalArgumentExceptionif license is null.
FaceSDKExceptionin case of an error in native code.

◆ FaceRecognition() [3/4]

com.tech5.FaceSDK.FaceRecognition.FaceRecognition ( int  version,
DataContainer  dataContainer,
int  batchSize,
int  computeDevice 
) throws FaceSDKException
inline

Creates the object with needed version, data container, batch size and compute device.
The default license is loaded. License#makeDefaultLicense().

Parameters
versionrequired version of the algorithm.
dataContainerthe license object.
batchSizethe batch size.
computeDevicethe compute device. -1 = CPU. 0, 1, ..., N - GPU device.
Exceptions
IllegalArgumentExceptionif dataContainer is null.
FaceSDKExceptionin case of an error in native code.

◆ FaceRecognition() [4/4]

com.tech5.FaceSDK.FaceRecognition.FaceRecognition ( int  version,
int  batchSize,
int  computeDevice 
) throws FaceSDKException
inline

Creates the object with needed version, license, batch size and compute device.
The default license is loaded. License#makeDefaultLicense().

Parameters
versionrequired version of the algorithm.
batchSizethe batch size.
computeDevicethe compute device. -1 = CPU. 0, 1, ..., N - GPU device.
Exceptions
FaceSDKExceptionin case of an error in native code.