RFSMatchFacesComparedFace

Objective-C


@interface RFSMatchFacesComparedFace : NSObject

Swift

class MatchFacesComparedFace : NSObject

RFSMatchFacesComparedFace represents a reference information of the compared face.

  • The index to the input image in the input array provided to the request.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nonnull) NSNumber *imageIndex;

    Swift

    var imageIndex: NSNumber { get }
  • The input image used for comparison operation.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nonnull) RFSMatchFacesImage *image;

    Swift

    var image: RFSMatchFacesImage { get }
  • The index to the array of faces in the detection results.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSNumber *faceIndex;

    Swift

    var faceIndex: NSNumber? { get }
  • The face detection result.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) RFSMatchFacesDetectionFace *face;

    Swift

    var face: RFSMatchFacesDetectionFace? { 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

Deprecated

  • Deprecated

    Deprecated in FaceSDK 3.2. Use image.imageType instead.

    The image type.

    Declaration

    Objective-C

    @property (nonatomic, readonly) RFSImageType imageType;

    Swift

    var imageType: ImageType { get }
  • Deprecated

    Deprecated in FaceSDK 3.2. Use imageIndex or image instead.

    The index of a ComparedFace object in the images array provided to the request.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly, nullable) NSNumber *position;

    Swift

    var position: NSNumber? { get }