mirror of
https://github.com/opencv/opencv.git
synced 2024-12-15 01:39:10 +08:00
c4c9cdd2b1
Expose CGImage <-> Mat conversion for iOS platforms * Add apple_conversions to framework builds This exposes CGImage <-> Mat conversion. * Export Mat <-> CGImage methods on iOS targets * Add CGImage converters to iOS objc helper class * Add CF_RETURNS_RETAINED annotations to methods returning CGImageRef
45 lines
938 B
Plaintext
45 lines
938 B
Plaintext
//
|
|
// Mat+UIImage.mm
|
|
//
|
|
// Created by Giles Payne on 2020/03/03.
|
|
//
|
|
|
|
#import "Mat+Converters.h"
|
|
#import <opencv2/imgcodecs/ios.h>
|
|
|
|
@implementation Mat (Converters)
|
|
|
|
-(CGImageRef)toCGImage {
|
|
return MatToCGImage(self.nativeRef);
|
|
}
|
|
|
|
-(instancetype)initWithCGImage:(CGImageRef)image {
|
|
return [self initWithCGImage:image alphaExist:NO];
|
|
}
|
|
|
|
-(instancetype)initWithCGImage:(CGImageRef)image alphaExist:(BOOL)alphaExist {
|
|
self = [self init];
|
|
if (self) {
|
|
CGImageToMat(image, self.nativeRef, (bool)alphaExist);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
-(UIImage*)toUIImage {
|
|
return MatToUIImage(self.nativeRef);
|
|
}
|
|
|
|
-(instancetype)initWithUIImage:(UIImage*)image {
|
|
return [self initWithUIImage:image alphaExist:NO];
|
|
}
|
|
|
|
-(instancetype)initWithUIImage:(UIImage*)image alphaExist:(BOOL)alphaExist {
|
|
self = [self init];
|
|
if (self) {
|
|
UIImageToMat(image, self.nativeRef, (bool)alphaExist);
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|