CIDetector
2019-01-17 本文已影响0人
风冰武
//图像处理器, 用于识别静止图像或视频中的显著特征(如人脸和条形码) 21行
//备注: 检测到的特征由CIFeature对象表示, CIFeature对象提供关于每个特征的更多信息
@interface CIDetector : NSObject {}
//创建并返回配置的处理器 35行
+ (nullable CIDetector *)detectorOfType:(NSString*)type
context:(nullable CIContext *)context
options:(nullable NSDictionary<NSString *,id> *)options;