RGLIdentResult

Objective-C

@interface RGLIdentResult : RGLAuthenticityElement

@property(nonatomic, strong, readonly, nullable) UIImage *etalonImage;
@property(nonatomic, strong, readonly, nullable) UIImage *image;
@property(nonatomic, assign, readonly) NSInteger percentValue;
@property(nonatomic, assign, readonly) NSInteger lightIndex;
@property(nonatomic, strong, readonly, nonnull) RGLElementRect *area;

- (instancetype _Nonnull)initWithEtalonImage:(nullable UIImage *)etalonImage
                                       image:(nullable UIImage *)image
                                percentValue:(NSInteger)percentValue
                                      status:(RGLCheckResult)status
                                 elementType:(RGLSecurityFeatureType)elementType
                                        area:(nonnull RGLElementRect *)area
                             elementDiagnose:(RGLCheckDiagnose)elementDiagnose;

@end

Swift

class IdentResult : AuthenticityElement

Undocumented

  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nullable) UIImage *etalonImage

    Swift

    var etalonImage: UIImage? { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nullable) UIImage *image

    Swift

    var image: UIImage? { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) NSInteger percentValue

    Swift

    var percentValue: Int { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, assign, readonly) NSInteger lightIndex

    Swift

    var lightIndex: Int { get }
  • Undocumented

    Declaration

    Objective-C

    @property(nonatomic, strong, readonly, nonnull) RGLElementRect *area

    Swift

    var area: RGLElementRect { get }
  • Undocumented

    Declaration

    Objective-C

    - (instancetype _Nonnull)initWithEtalonImage:(nullable UIImage *)etalonImage
                                           image:(nullable UIImage *)image
                                    percentValue:(NSInteger)percentValue
                                          status:(RGLCheckResult)status
                                     elementType:(RGLSecurityFeatureType)elementType
                                            area:(nonnull RGLElementRect *)area
                                 elementDiagnose:(RGLCheckDiagnose)elementDiagnose;

    Swift

    init(etalonImage: UIImage?, image: UIImage?, percentValue: Int, status: CheckResult, elementType: SecurityFeatureType, area: RGLElementRect, elementDiagnose: CheckDiagnose)