RFSMatchFacesRequest
Objective-C
@interface RFSMatchFacesRequest : NSObject
Swift
class MatchFacesRequest : NSObject
RFSMatchFacesRequest
compares two or more images with faces on them to find out the similarity of pairs.
The request is used as a parameter to -[RFSFaceSDK matchFaces:completion:]
.
-
Defines tag that can be used in match faces processing. Defaults to
nil
.Declaration
Objective-C
@property (nonatomic, strong, nullable) NSString *tag;
Swift
var tag: String? { get set }
-
If set. the uploaded image is processed according to the indicated settings
Declaration
Objective-C
@property (nonatomic, strong, nullable) RFSOutputImageParams *outputImageParams;
Swift
var outputImageParams: RFSOutputImageParams? { get set }
-
Images with faces to match.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nonnull) NSArray<RFSMatchFacesImage *> *images;
Swift
var images: [RFSMatchFacesImage] { get }
-
Unavailable
Not the designated initializer
Undocumented
Declaration
Objective-C
RFS_EMPTY_INIT_UNAVAILABLE
-
Unavailable
Not the designated initializer
Undocumented
Declaration
Objective-C
RFS_EMPTY_INIT_UNAVAILABLE
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithImages:(nonnull NSArray<RFSMatchFacesImage *> *)images NS_DESIGNATED_INITIALIZER;
Swift
init(images: [RFSMatchFacesImage])