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 = 1Swift
case printed = 1 -
The image contains a portrait of a person and is taken from the RFID chip.
Declaration
Objective-C
RFSImageTypeRFID = 2Swift
case RFID = 2 -
The image is taken from the camera.
Declaration
Objective-C
RFSImageTypeLive = 3Swift
case live = 3 -
The image contains a document with a portrait of a person.
Declaration
Objective-C
RFSImageTypeDocumentWithLive = 4Swift
case documentWithLive = 4 -
The image from an unknown source.
Declaration
Objective-C
RFSImageTypeExternal = 5Swift
case external = 5 -
The image is a ghost portrait.
Declaration
Objective-C
RFSImageTypeGhostPortrait = 6Swift
case ghostPortrait = 6 -
The image from a barcode
Declaration
Objective-C
RFSImageTypeBarcode = 7Swift
case barcode = 7