搜索
您的当前位置:首页正文

CIDetector

来源:二三娱乐
//图像处理器, 用于识别静止图像或视频中的显著特征(如人脸和条形码)  21行
//备注: 检测到的特征由CIFeature对象表示, CIFeature对象提供关于每个特征的更多信息
@interface CIDetector : NSObject {}

//创建并返回配置的处理器   35行
+ (nullable CIDetector *)detectorOfType:(NSString*)type
                                context:(nullable CIContext *)context
                                options:(nullable NSDictionary<NSString *,id> *)options;

Top