VerIDSessionResult

Session result

Package com.appliedrec.verid.core2

public class VerIDSessionResult

Implements

Methods

getError

Introduced in version 1.0.0

public getError()

Returns

java.lang.Exception
Error or null if the result is successful

getFaceImages

Introduced in version 1.0.0

public getFaceImages(Bearing)

Get a map of faces and image URIs collected in the session.

Parameters

bearing com.appliedrec.verid.core2.Bearing
Filter the result to faces with this bearing

Returns

java.util.HashMap<Face, Uri>
Map of image URIs keyed by face objects

getFaceImages

Introduced in version 1.0.0

public getFaceImages()

Get a map of all faces and image URIs collected in the session.

Returns

java.util.HashMap<Face, Uri>
Map of image URIs keyed by face objects

See also

getFaces

Introduced in version 1.0.0

public getFaces(Bearing)

Get an array of faces collected in the session.

Parameters

bearing com.appliedrec.verid.core2.Bearing
Filter the result to faces with this bearing

Returns

com.appliedrec.verid.core2.Face[]
Array of faces

getFaces

Introduced in version 1.0.0

public getFaces()

Get an array of all faces collected in the session.

Returns

com.appliedrec.verid.core2.Face[]
Array of faces

See also

getImageUris

Introduced in version 1.0.0

public getImageUris(Bearing)

Get URIs of images collected in the session.

Parameters

bearing com.appliedrec.verid.core2.Bearing
Filter the result to images where the face has this bearing

Returns

android.net.Uri[]
Array of image URIs

getImageUris

Introduced in version 1.0.0

public getImageUris()

Get URIs of all images collected in the session.

Returns

android.net.Uri[]
Array of image URIs

See also

getDetectedBearings

Introduced in version 1.0.0

public getDetectedBearings()

Get all the bearings detected in the faces collected in the session.

Returns

java.util.EnumSet<Bearing>
Set of bearings

getFacesSuitableForRecognition

Introduced in version 1.0.0

public getFacesSuitableForRecognition(Bearing)

Get faces collected in the session that can be used for face recognition.

Parameters

bearing com.appliedrec.verid.core2.Bearing
Filter the faces by bearing

Returns

com.appliedrec.verid.core2.RecognizableFace[]
Array of faces that can be used for face recognition

getFacesSuitableForRecognition

Introduced in version 1.0.0

public getFacesSuitableForRecognition()

Get all faces collected in the session that can be used for face recognition.

Returns

com.appliedrec.verid.core2.RecognizableFace[]
Array of faces that can be used for face recognition

See also