Protocols

The following protocols are available globally.

  • Declaration

    Objective-C

    @protocol CvVideoCameraDelegate2 <NSObject>
    - (void)processImage:(Mat*)image;
    @end

    Swift

    protocol CvVideoCameraDelegate2 : NSObjectProtocol
  • Declaration

    Objective-C

    @protocol CvPhotoCameraDelegate2 <NSObject>
    - (void)photoCamera:(CvPhotoCamera2*)photoCamera capturedImage:(UIImage*)image;
    - (void)photoCameraCancel:(CvPhotoCamera2*)photoCamera;
    @end

    Swift

    protocol CvPhotoCameraDelegate2 : NSObjectProtocol