Classes

The following classes are available globally.

  • Base class for creating immutable configuration objects.

    See more

    Declaration

    Objective-C

    
    @interface RFSBaseConfiguration<T : __kindof RFSBaseConfigurationBuilder *>
        : NSObject

    Swift

    class BaseConfiguration<T> : NSObject where T : BaseConfigurationBuilder
  • Base class for creating immutable configuration objects. This is a mutable part that is configured in the builderBlock of the RFSBaseConfiguration.

    See more

    Declaration

    Objective-C

    
    @interface RFSBaseConfigurationBuilder : NSObject

    Swift

    class BaseConfigurationBuilder : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    
    @interface RFSCameraOverlayView : RFSPassthroughView

    Swift

    class CameraOverlayView : PassthroughView
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSCameraToolbarView : UIView <RFSOverriding>
    
    @property(readwrite, nonatomic, assign) RFSCameraToolbarViewState state;
    
    #pragma mark - Overriding
    
    /// Defaults to not `nil`. Can be overriden directly or set to `nil` to hide a button from the toolbar.
    @property(readonly, nonatomic, nullable) UIButton *torchButton;
    
    /// Defaults to not `nil`. Can be overriden directly or set to `nil` to hide a button from the toolbar.
    @property(readonly, nonatomic, nullable) UIButton *switchCameraButton;
    
    /// Defaults to not `nil`. Can be overriden directly or set to `nil` to hide a button from the toolbar.
    @property(readonly, nonatomic, nullable) UIButton *closeButton;
    
    /// Setups default constraints. Can be overriden to provide custom layout constraints.
    - (void)setupConstraints;
    
    /// Updates CameraToolbarView state. Called when `state` propperty is changed.
    /// Can be overriden to provide custom appearance for different states of ToolbarView.
    - (void)updateState:(RFSCameraToolbarViewState)state;
    
    #pragma mark - Styling
    
    - (void)setTintColor:(nullable UIColor *)color forState:(RFSCameraToolbarViewState)state UI_APPEARANCE_SELECTOR;
    - (nullable UIColor *)tintColorForState:(RFSCameraToolbarViewState)state UI_APPEARANCE_SELECTOR;
    
    @end

    Swift

    class CameraToolbarView : UIView, Overriding
  • 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:].

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesRequest : NSObject

    Swift

    class MatchFacesRequest : NSObject
  • The response from the RFSMatchFacesRequest.

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesResponse : NSObject

    Swift

    class MatchFacesResponse : NSObject
  • RFSMatchFacesComparedFace represents a reference information of the compared face.

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesComparedFace : NSObject

    Swift

    class MatchFacesComparedFace : NSObject
  • The Image class wraps regular UIImage and provides more information to the input and output data.

    See more

    Declaration

    Objective-C

    
    @interface RFSImage : NSObject

    Swift

    class Image : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSDetectFaceResult: NSObject
    
    /// The array for the face image quality assessments
    @property(nullable, nonatomic, readonly, copy) NSArray<RFSImageQualityResult *> *quality;
    
    /// The array of the checked attributes.
    @property(nullable, nonatomic, readonly, copy) NSArray<RFSDetectFacesAttributeResult *> *attributes;
    
    /// Base64 image of the aligned and cropped portrait.
    /// Returned if `RFSDetectFacesConfiguration.outputImageParams` is set or predefined scenario is used.
    @property(nullable, nonatomic, readonly) UIImage *crop;
    
    /// Сoordinates of the rectangular area that contains the face relative to the overall image.
    @property(nonatomic, readonly, assign) CGRect faceRect;
    
    /// Coordinates of the rectangle with the face on the original image prepared for the face crop.
    /// Requires `RFSOutputImageCrop.returnOriginalRect` is set.
    /// Returns 'CGRectZero' if `RFSOutputImageCrop.returnOriginalRect` isn't set.
    @property(nonatomic, readonly, assign) CGRect originalRect;
    
    /// Absolute coordinates of five points of each detected face: left eye, right eye, nose, left point of lips, right point of lips.
    @property(nullable, nonatomic, readonly, copy) NSArray<RFSPoint *> *landmarks;
    
    /// Summary of all image quality assessments.
    /// Returns YES if all image quality assessments have success status.
    /// Returns NO if any of image quality assessments have non-success status or none of quality assessments were requested.
    @property(nonatomic, readonly, assign) BOOL isQualityCompliant;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class DetectFaceResult : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSDetectFacesAttributeResult: NSObject
    
    @property(nonnull, nonatomic, readonly) RFSDetectFacesAttribute attribute;
    @property(nullable, nonatomic, readonly) NSNumber *confidence;
    @property(nullable, nonatomic, readonly) NSString *value;
    @property(nullable, nonatomic, readonly) RFSImageQualityRange *range;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class DetectFacesAttributeResult : NSObject
  • Custom configuration for RFSDetectFacesRequest.

    See more

    Declaration

    Objective-C

    
    @interface RFSDetectFacesConfiguration : NSObject

    Swift

    class DetectFacesConfiguration : NSObject
  • Detect Faces Request. Could be created by predefined scenarios (e.g: qualityICAORequest, cropAllFacesRequest etc. ) or by using custom RFSDetectFacesConfiguration.

    See more

    Declaration

    Objective-C

    
    @interface RFSDetectFacesRequest : NSObject

    Swift

    class DetectFacesRequest : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSDetectFacesResponse: NSObject
    
    /// Single Face Detection result.
    /// Preferred to use when Scenario supports only central face detection.
    @property(nullable, nonatomic, readonly) RFSDetectFaceResult *detection;
    
    /// All Face Detections Results.
    /// Preferred to use when Scenario supports multiple faces detection.
    @property(nullable, nonatomic, readonly, copy) NSArray<RFSDetectFaceResult *> *allDetections;
    
    /// Current Image Quality Assessment Scenario
    /// `nil` for Request with custom configuration.
    @property(nullable, nonatomic, readonly, copy) NSString *scenario;
    
    /// The error describes a failed detect faces request and contains `RFSDetectFacesErrorCode` codes.
    /// This error belongs to the `RFSDetectFacesErrorDomain`.
    @property(nullable, nonatomic, readonly, strong) NSError *error;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class DetectFacesResponse : NSObject
  • Mutable builder part of the RFSFaceCaptureConfiguration.

    See more

    Declaration

    Objective-C

    
    @interface RFSFaceCaptureConfigurationBuilder : RFSBaseConfigurationBuilder

    Swift

    class FaceCaptureConfigurationBuilder : BaseConfigurationBuilder
  • Configuration for the FaceCapture.

    This class is used as a parameters for -[RFSFaceSDK presentFaceCaptureViewControllerFrom:animated:configuration:onCapture:completion:]. The configuration provides convenient properties to change the behavior and the appearance of the FaceCapture UI module.

    See more

    Declaration

    Objective-C

    
    @interface RFSFaceCaptureConfiguration
        : RFSBaseConfiguration <RFSFaceCaptureConfigurationBuilder *> <NSObject>

    Swift

    class FaceCaptureConfiguration : BaseConfiguration<FaceCaptureConfigurationBuilder>, NSObjectProtocol
  • Undocumented

    See more

    Declaration

    Objective-C

    
    @interface RFSFaceCaptureContentView : RFSPassthroughView <RFSOverriding>

    Swift

    class FaceCaptureContentView : PassthroughView, Overriding
  • The response from the Face Capture module. This object contains either an image or an error.

    See more

    Declaration

    Objective-C

    
    @interface RFSFaceCaptureResponse : NSObject

    Swift

    class FaceCaptureResponse : NSObject
  • The entry point to the Face SDK features.

    See more

    Declaration

    Objective-C

    
    @interface RFSFaceSDK : NSObject

    Swift

    class FaceSDK : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSHintView : UIView
    
    @property(readwrite, nonatomic, assign) RFSHintViewState state;
    @property(readwrite, nonatomic, strong, nullable) NSString *text;
    
    #pragma mark - Styling
    
    @property(readwrite, nonatomic, assign) CGFloat cornerRadius UI_APPEARANCE_SELECTOR;
    
    - (void)setTextColor:(nullable UIColor *)color forState:(RFSHintViewState)state UI_APPEARANCE_SELECTOR;
    - (nullable UIColor *)textColorForState:(RFSHintViewState)state UI_APPEARANCE_SELECTOR;
    
    - (void)setBackgroundColor:(nullable UIColor *)color forState:(RFSHintViewState)state UI_APPEARANCE_SELECTOR;
    - (nullable UIColor *)backgroundColorForState:(RFSHintViewState)state UI_APPEARANCE_SELECTOR;
    
    @end

    Swift

    class HintView : UIView
  • Image Quality parameter to include in RFSDetectFacesConfiguration as customQuality.

    See more

    Declaration

    Objective-C

    
    @interface RFSImageQualityCharacteristic : NSObject

    Swift

    class ImageQualityCharacteristic : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSImageCharacteristics: NSObject
    
    /// The image width, pixels.
    /// Doesn't have recommended value.
    + (RFSImageQualityCharacteristic *)imageWidthWithRange:(NSArray<NSNumber *> *)range;
    
    /// The image height, pixels.
    /// Doesn't have recommended value.
    + (RFSImageQualityCharacteristic *)imageHeightWithRange:(NSArray<NSNumber *> *)range;
    
    /// The image width to height proportion.
    /// Doesn't have recommended value.
    + (RFSImageQualityCharacteristic *)imageWidthToHeightWithRange:(NSArray<NSNumber *> *)range;
    
    /// The image RGB channels number.
    /// Doesn't have recommended value.
    /// Range value [3, 3] is for RGB images.
    + (RFSImageQualityCharacteristic *)imageChannelsNumberWithValue:(NSNumber *)value;
    
    /// The percentage of the area of the image that was "padded" during alignment.
    /// The characteristic is needed to determine if the head goes beyond the image.
    /// The range is from 0 to 1 where 0 is 0% of the image is "padded".
    + (RFSImageQualityCharacteristic *)paddingRatio;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class Image : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSHeadSizeAndPosition: NSObject
    
    /// The position of the "middle point" (the middle of the line connecting the eye centers) relative to the width of the image.
    /// The range is from 0 to 1 where range [0.5, 0.5] is for "middle point" strictly in the center .
    + (RFSImageQualityCharacteristic *)faceMidPointHorizontalPosition;
    
    /// The position of the "middle point" (the middle of the line connecting the eye centers) relative to the height of the image.
    /// The range is from 0 to 1 where range [0.5, 0.5] is for "middle point" strictly in the center .
    + (RFSImageQualityCharacteristic *)faceMidPointVerticalPosition;
    
    /// The head width to the image width ratio.
    /// The range is from 0 to 1.
    + (RFSImageQualityCharacteristic *)headWidthRatio;
    
    /// The head height to the image height ratio.
    /// The range is from 0 to 1.
    + (RFSImageQualityCharacteristic *)headHeightRatio;
    
    /// Inter-eye distance — the length of the line connecting the eye centers of the left and right eye, pixels.
    + (RFSImageQualityCharacteristic *)eyesDistance;
    
    /// The yaw of the head, degrees.
    /// The range is from -90 to 90. Range value [0, 0] for strictly stright head position.
    + (RFSImageQualityCharacteristic *)yaw;
    
    /// The pitch of the head, degrees.
    /// The range is from -90 to 90. Range value [0, 0] for strictly stright head position.
    + (RFSImageQualityCharacteristic *)pitch;
    
    /// The roll of the head, degrees.
    /// The range is from -90 to 90. Range value [0, 0] for strictly stright head position.
    + (RFSImageQualityCharacteristic *)roll;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class HeadSizeAndPosition : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSFaceImageQuality: NSObject
    
    /// The blur level.
    /// The range is from 0 to 1 where 0 is the absence of blur effect
    + (RFSImageQualityCharacteristic *)blurLevel;
    
    /// The noise level.
    /// The range is from 0 to 1 where 0 is minimal noise level.
    + (RFSImageQualityCharacteristic *)noiseLevel;
    
    /// The true-colour representation of the skin colour.
    /// The range is from 0 to 1.
    + (RFSImageQualityCharacteristic *)unnaturalSkinTone;
    
    /// The range of tonal difference between the lightest light and darkest dark of an image, bits.
    + (RFSImageQualityCharacteristic *)faceDynamicRange;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class FaceImage : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSEyesCharacteristics: NSObject
    
    /// Whether the right eye is closed.
    /// The range is from 0 to 1 where 1 is the eye is fully closed.
    + (RFSImageQualityCharacteristic *)eyeRightClosed;
    
    /// Whether the left eye is closed.
    /// The range is from 0 to 1 where 1 is the eye is fully closed.
    + (RFSImageQualityCharacteristic *)eyeLeftClosed;
    
    /// Whether the right eye is occluded.
    /// The range is from 0 to 1 where 1 is the eye is fully occluded.
    + (RFSImageQualityCharacteristic *)eyeRightOccluded;
    
    /// Whether the left eye is occluded.
    /// The range is from 0 to 1 where 1 is the eye is fully occluded.
    + (RFSImageQualityCharacteristic *)eyeLeftOccluded;
    
    /// Whether there is the red-eye effect.
    /// The range is from 0 to 1 where 0 is the absence of  red-eye effect.
    + (RFSImageQualityCharacteristic *)eyesRed;
    
    /// Whether the right eye is covered with hair.
    /// The range is from 0 to 1 where 1 is 100% of the eye is covered by hair.
    + (RFSImageQualityCharacteristic *)eyeRightCoveredWithHair;
    
    /// Whether the left eye is covered with hair.
    /// The range is from 0 to 1 where 1 is 100% of the eye is covered by hair.
    + (RFSImageQualityCharacteristic *)eyeLeftCoveredWithHair;
    
    /// Whether the person is not looking directly at the camera.
    /// The range is from 0 to 1 where 0 is for absolutely direct look.
    + (RFSImageQualityCharacteristic *)offGaze;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class Eyes : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSShadowsAndLightning: NSObject
    
    /// Whether the photo is too dark.
    /// The range is from 0 to 1.
    + (RFSImageQualityCharacteristic *)tooDark;
    
    /// Whether the photo is overexposed.
    /// The range is from 0 to 1.
    + (RFSImageQualityCharacteristic *)tooLight;
    
    /// Whether there is glare on the face.
    /// The range is from 0 to 1 where 0 is the absence of glare.
    + (RFSImageQualityCharacteristic *)faceGlare;
    
    /// Whether there are shadows on the face.
    /// The range is from 0 to 1 where 0 is the absence of shadows on the face.
    + (RFSImageQualityCharacteristic *)shadowsOnFace;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class ShadowsAndLightning : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSPoseAndExpression: NSObject
    
    /// Checks the symmetry of the shoulders.
    /// The range is from 0 to 1 where 1 is for absolutely symmetrical shoulders.
    + (RFSImageQualityCharacteristic *)shouldersPose;
    
    /// Checks the presence of any emotional facial expression.
    /// The range is from 0 to 1 where 0 is for absolutely non-emotional expression.
    + (RFSImageQualityCharacteristic *)expressionLevel;
    
    /// Whether the mouth is open.
    /// The range is from 0 to 1 where 0 is closed mouth.
    + (RFSImageQualityCharacteristic *)mouthOpen;
    
    /// Whether the person smiles.
    /// The range is from 0 to 1 where 0 is smile absence.
    + (RFSImageQualityCharacteristic *)smile;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class PoseAndExpression : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSHeadOcclusion: NSObject
    
    /// Whether the person wears dark glasses.
    /// The range is from 0 to 1 where 0 is dark glasses absence.
    +(RFSImageQualityCharacteristic *)darkGlasses;
    
    /// Whether there are reflections on glasses.
    /// The range is from 0 to 1 where 0 is reflections absence.
    /// In the current release, always succeeds. Will be developed in the coming releases.
    +(RFSImageQualityCharacteristic *)reflectionOnGlasses;
    
    /// Whether the glasses frames do not obscure eye details and the irises of both eyes are visible.
    /// The range is from 0 to 20 where 0 the absence of frames (glasses).
    +(RFSImageQualityCharacteristic *)framesTooHeavy;
    
    /// Whether the face is visible and not occluded.
    /// The range is from 0 to 1 where 0 is face occlusion absence.
    +(RFSImageQualityCharacteristic *)faceOccluded;
    
    /// Whether there is any head coverage other than religious headwear.
    /// The range is from 0 to 1.
    +(RFSImageQualityCharacteristic *)headCovering;
    
    /// Whether the forehead is covered.
    /// The range is from 0 to 1.
    +(RFSImageQualityCharacteristic *)foreheadCovering;
    
    /// Whether the makeup is too strong.
    /// In the current release, always succeeds. Will be developed in the coming releases.
    /// The range is from 0 to 1.
    +(RFSImageQualityCharacteristic *)strongMakeup;
    
    /// Whether the person is wearing headphones.
    /// /// The range is from 0 to 1 where 0 is headphones absence.
    +(RFSImageQualityCharacteristic *)headphones;
    
    /// Whether the person is wearing a medical mask.
    /// The range is from 0 to 1 where 0 is medical mask absence.
    +(RFSImageQualityCharacteristic *)medicalMask;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    @end

    Swift

    class HeadOcclusion : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    @interface RFSQualityBackground: NSObject
    
    /// Checks uniformity of the portrait background.
    /// The range is from 0 to 1 where 1 is absolute background uniformity.
    + (RFSImageQualityCharacteristic *)backgroundUniformity;
    
    /// Whether there are shadows on the portrait background.
    /// The range is from 0 to 1 where 1 is the absence of shadows on the portrait background.
    + (RFSImageQualityCharacteristic *)shadowsOnBackground;
    
    /// The number of faces on the photo.
    /// The range starts from 1.
    + (RFSImageQualityCharacteristic *)otherFaces;
    
    /// Whether the background color matches default background color.
    /// Default color is white (RGB(255,255,255) or hex #FFFFFF)
    /// The range is from 0 to 1 where 1 is full background color match.
    + (RFSImageQualityColorCharacteristic *)backgroundColorMatch;
    
    /// Whether the background color matches the required color.
    /// The range is from 0 to 1 where 1 is full background color match.
    + (RFSImageQualityColorCharacteristic *)backgroundColorMatchWithColor:(UIColor*)color;
    
    /// All Group characteristics with default (recommended) values.
    /// Doesn't include characteristics without default values.
    + (NSArray<RFSImageQualityCharacteristic *> *)allRecommended;
    
    RFS_EMPTY_INIT_UNAVAILABLE
    
    @end

    Swift

    class Background : NSObject
  • Image Quality Characteristic where a color is the parameter for Assessment.

    See more

    Declaration

    Objective-C

    
    @interface RFSImageQualityColorCharacteristic : RFSImageQualityCharacteristic

    Swift

    class ImageQualityColorCharacteristic : ImageQualityCharacteristic
  • Base range value for Image Quality parameters

    See more

    Declaration

    Objective-C

    
    @interface RFSImageQualityRange : NSObject

    Swift

    class ImageQualityRange : NSObject
  • Quality assessment result.

    See more

    Declaration

    Objective-C

    
    @interface RFSImageQualityResult : NSObject

    Swift

    class ImageQualityResult : NSObject
  • Mutable builder part of the RFSLivenessConfiguration.

    See more

    Declaration

    Objective-C

    
    @interface RFSLivenessConfigurationBuilder : RFSBaseConfigurationBuilder

    Swift

    class LivenessConfigurationBuilder : BaseConfigurationBuilder
  • Configuration for the Liveness processing.

    This class is used as a parameters for -[RFSFaceSDK startLivenessFrom:animated:configuration:onLiveness:completion:]. The configuration provides convenient properties to change the behavior and the appearance of the Liveness UI module.

    See more

    Declaration

    Objective-C

    
    @interface RFSLivenessConfiguration
        : RFSBaseConfiguration <RFSLivenessConfigurationBuilder *> <NSObject>

    Swift

    class LivenessConfiguration : BaseConfiguration<LivenessConfigurationBuilder>, NSObjectProtocol
  • Undocumented

    See more

    Declaration

    Objective-C

    
    @interface RFSLivenessContentView : RFSPassthroughView <RFSOverriding>

    Swift

    class LivenessContentView : PassthroughView, Overriding
  • Undocumented

    See more

    Declaration

    Objective-C

    
    @interface RFSLivenessProcessingContentView : RFSPassthroughView <RFSOverriding>

    Swift

    class LivenessProcessingContentView : PassthroughView, Overriding
  • The response from the Liveness module.

    See more

    Declaration

    Objective-C

    
    @interface RFSLivenessResponse : NSObject

    Swift

    class LivenessResponse : NSObject
  • Undocumented

    See more

    Declaration

    Objective-C

    
    @interface RFSLivenessRetryContentView : RFSPassthroughView <RFSOverriding>

    Swift

    class LivenessRetryContentView : PassthroughView, Overriding
  • RFSMatchFacesComparedFacesPair represents a result of the RFSMatchFacesRequest attempt to compare input images.

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesComparedFacesPair : NSObject

    Swift

    class MatchFacesComparedFacesPair : NSObject
  • RFSMatchFacesDetection represents detection results on an input image as a part of RFSMatchFacesResponse.

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesDetection : NSObject

    Swift

    class MatchFacesDetection : NSObject
  • RFSMatchFacesDetectionFace represents face detection information as a part of RFSMatchFacesResponse.

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesDetectionFace : NSObject

    Swift

    class MatchFacesDetectionFace : NSObject
  • This class represents the input image and its attributes for RFSMatchFacesRequest.

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesImage : NSObject

    Swift

    class MatchFacesImage : NSObject
  • RFSMatchFacesSimilarityThresholdSplit is a result of a splits operation Use splitPairs operation on matched faces pairs with similarityThreshold to split the results into matched and unmatched groups.

    See more

    Declaration

    Objective-C

    
    @interface RFSMatchFacesSimilarityThresholdSplit : NSObject

    Swift

    class MatchFacesSimilarityThresholdSplit : NSObject
  • Crop settings for RFSOutputImageParams.

    See more

    Declaration

    Objective-C

    
    @interface RFSOutputImageCrop : NSObject

    Swift

    class OutputImageCrop : NSObject
  • Set of parameter for image processing.

    See more

    Declaration

    Objective-C

    
    @interface RFSOutputImageParams : NSObject

    Swift

    class OutputImageParams : NSObject
  • The view that will only handle subview’s touch events. Other events are passed through.

    Declaration

    Objective-C

    
    @interface RFSPassthroughView : UIView

    Swift

    class PassthroughView : UIView
  • Point class represents a two number X, Y value.

    See more

    Declaration

    Objective-C

    
    @interface RFSPoint : NSObject

    Swift

    class Point : NSObject