FaceMatcher Class¶
Namespace: id3.Face
Definition¶
Compares two face templates and searches for a face template in a list.
class FaceMatcher
class FaceMatcher implements Finalizable
public partial class FaceMatcher
public class FaceMatcher implements AutoCloseable, Serializable
public class FaceMatcher
typedef struct id3FaceMatcher *ID3_FACE_MATCHER;
Usage¶
faceMatcherInstance = FaceMatcher()
# ...
Explicit destruction
# ...
del faceMatcherInstance
final faceMatcherInstance = sdk.FaceMatcher();
// ...
Explicit destruction
// ...
faceMatcherInstance.dispose()
using (var faceMatcherInstance = new FaceMatcher())
{
// ...
}
Explicit destruction
var faceMatcherInstance = new FaceMatcher()
// ...
faceMatcherInstance.Dispose()
try (FaceMatcher faceMatcherInstance = new FaceMatcher()) {
// ...
}
Explicit destruction
FaceMatcher faceMatcherInstance = new FaceMatcher();
// ...
faceMatcherInstance.close();
private var faceMatcherInstance: FaceMatcher? = nil
faceMatcherInstance = try FaceMatcher()
ID3_FACE_MATCHER hFaceMatcher{};
int err = id3FaceMatcher_Initialize(&hFaceMatcher);
if (err == ID3_SUCCESS) {
// ...
id3FaceMatcher_Dispose(&hFaceMatcher);
}
Methods¶
Name |
Description |
---|---|
Compares two template lists and outputs a comparison score. |
|
Compares two templates and outputs a comparison score. |
|
Performs a one-to-many search of a biometric probe against a previously initialized dictionary of biometric references and outputs a candidate list. |