Package com.appliedrec.verid.core2
Interface IRecognizable
-
- All Known Implementing Classes:
FaceTemplate
,RecognizableFace
,RecognizableSubject
public interface IRecognizable
Represents an entity that can be used for face recognition- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
getRecognitionData()
RecognizableType
getType()
int
getVersion()
-
-
-
Method Detail
-
getRecognitionData
byte[] getRecognitionData()
- Returns:
- Face recognition data
- Since:
- 1.0.0
-
getVersion
@NonNull int getVersion()
- Returns:
- Version used to determine compatibility
- Since:
- 1.0.0
-
getType
RecognizableType getType()
- Returns:
- Type of recognizable data this object contains
- Since:
- 1.0.0
-
-