RFSImageType
Objective-C
enum RFSImageType : NSInteger {}
Swift
enum ImageType : Int, @unchecked Sendable
The image type of RFSImage
influences matching results and provides the information about the source of the image.
-
The image contains a printed portrait of a person.
Declaration
Objective-C
RFSImageTypePrinted = 1
Swift
case printed = 1
-
The image contains a portrait of a person and is taken from the RFID chip.
Declaration
Objective-C
RFSImageTypeRFID = 2
Swift
case RFID = 2
-
The image is taken from the camera.
Declaration
Objective-C
RFSImageTypeLive = 3
Swift
case live = 3
-
The image contains a document with a portrait of a person.
Declaration
Objective-C
RFSImageTypeDocumentWithLive = 4
Swift
case documentWithLive = 4
-
The image from an unknown source.
Declaration
Objective-C
RFSImageTypeExternal = 5
Swift
case external = 5
-
The image is a ghost portrait.
Declaration
Objective-C
RFSImageTypeGhostPortrait = 6
Swift
case ghostPortrait = 6
-
The image from a barcode
Declaration
Objective-C
RFSImageTypeBarcode = 7
Swift
case barcode = 7