ImageType enum
The image type of FaceCaptureImage influences matching results and provides the information about the source of the image.
Values
- PRINTED → const ImageType
-
The image contains a printed portrait of a person.
const ImageType(1)
- RFID → const ImageType
-
The image contains a portrait of a person and is taken from the RFID chip.
const ImageType(2)
- LIVE → const ImageType
-
The image is taken from the camera.
const ImageType(3)
- DOCUMENT_WITH_LIVE → const ImageType
-
The image contains a document with a portrait of a person.
const ImageType(4)
- EXTERNAL → const ImageType
-
The image from an unknown source.
const ImageType(5)
- GHOST_PORTRAIT → const ImageType
-
The image is a ghost portrait.
const ImageType(6)
- BARCODE → const ImageType
-
The image from a barcode.
const ImageType(7)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → int
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
getByValue(
int? i) → ImageType?