CIDetector之图片检测

引言:作为一个开发小白,也注册也有一段时间了,但是一直没太浏览过,更别说给大家分享一些经验了,只能没事借鉴别人的经验。突然想到识别图片中的二维码的功能,所以查了一些资料,发现CIDetector这个类可以实现,在这里简单和大家分享一下。

CIDetector 概述

A CIDetector object uses image processing to search for and identify notable features (faces, rectangles, and barcodes) in a still image or video. Detected features are represented by CIFeature objects that provide more information about each feature.

This class can maintain many state variables that can impact performance. So for best performance, reuse CIDetector instances instead of creating new ones.

CIDetector这个类用于识别、检测静止图片或者视频中的显著特征(面部,矩形和条形码),识别的具体特征由CIFeature类去处理。(由于英文水平有限,所有官方文档只做概述,英语好的朋友可以细细研究)

CIFeature 介绍

A CIFeature object represents a portion of an image that a detector believes matches its criteria. Subclasses of CIFeature typically hold additional information specific to the detector that discovered the feature.

CIFeature类只保存基本信息, 所有的附加信息由子类保存。

- CIFaceFeature (人脸识别)

以下是基本属性,相信大家也可以看明白(识别结果中使用的是坐标系和我们常用的有所区别,这个会在后面说明

@property (readonly, assign) BOOL hasLeftEyePosition;

@property (readonly, assign) CGRect bounds;

@property (readonly, assign) CGPoint leftEyePosition;

@property (readonly, assign) BOOL hasRightEyePosition;

@property (readonly, assign) CGPoint rightEyePosition;

@property (readonly, assign) BOOL hasMouthPosition;

@property (readonly, assign) CGPoint mouthPosition;

@property (readonly, assign) BOOL hasTrackingID;

@property (readonly, assign) int trackingID;

@property (readonly, assign) BOOL hasSmile;

@property (readonly, assign) BOOL leftEyeClosed;

@property (readonly, assign) BOOL rightEyeClosed;

这四个属性和视频检测相关,我目前也不知道作何使用。

@property (readonly, assign) BOOL hasTrackingID;

@property (readonly, assign) int trackingID;

@property (readonly, assign) BOOL hasTrackingFrameCount;

@property (readonly, assign) int trackingFrameCount;

- CIQRCodeFeature (二维码识别)

除基本的信息位置之外,只有一个重要信息,messageString。

@property (nullable, readonly) NSString* messageString;

- CIRectangleFeature (矩形识别)

只有基本的位置信息。

- CITextFeature (文本识别)

除基本的信息位置之外,只有一个额外信息,subFeatures。数组中是CITextFeature对象(见后门解释)

@property (nullable, readonly) NSArray *subFeatures;

开始撸代码 (以人脸识别为例)


初始化CIDetector

```

CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeFace context:nil options:@{CIDetectorAccuracy : CIDetectorAccuracyHigh}];

```

context:用于检测的图形上下文,可不传

options: CIDetectorAccuracy

A key used to specify the desired accuracy for the detector.

指定检测精度 (取值CIDetectorAccuracyHigh :CIDetectorAccuracyLow)

CIDetectorTracking

A key used to enable or disable face tracking for the detector. Use this option when you want to track faces across frames in a video.

是否开启面部追踪(视频中使用)

CIDetectorMinFeatureSize

A key used to specify the minimum size that the detector will recognize as a feature.

The value for this key is an NSNumber object ranging from 0.0 through 1.0 that represents a fraction of the minor dimension of the image.

指定识别要素最大或最小(值0~1,表示次要维度,我也不懂这是什么鬼)

CIDetectorNumberOfAngles

The number of perspectives to use for detecting a face in video input.

The value for this key is an NSNumber object containing the number 1, 3, 5, 7, 9, or 11. At higher numbers of angles, face detection in video becomes more accurate, but at a higher computational cost.

脸部透视数(值为包含1、3、5、7、9、11的NSNumber对象)

开始检测

```

NSArray *features = [detector featuresInImage:(CIImage *)image options:(NSDictionary*)options];

```

image: 一个CIImage对象

options: CIDetectorImageOrientation

An option for the display orientation of the image whose features you want to detect.

The value of this key is an NSNumber object whose value is an integer between 1 and 8. The TIFF and EXIF specifications define these values to indicate where the pixel coordinate origin (0,0) of the image should appear when it is displayed. The default value is 1, indicating that the origin is in the top left corner of the image. For further details, see kCGImagePropertyOrientation.

Core Image detects only faces whose orientation matches that of the image. You should provide a value for this key if you want to detect faces in a different orientation.

用于要检测其要素的图像的显示方向的选项。默认为1,具体参考kCGImagePropertyOrientation

CIDetectorEyeBlink

An option for whether Core Image will perform additional processing to recognize closed eyes in detected faces.

是否执行额外选项处理以识别面部眼部闭合

CIDetectorSmile

An option for whether Core Image will perform additional processing to recognize smiles in detected faces.

是否执行额外选项处理以识别面部微笑

CIDetectorFocalLength

An option identifying the focal length used in capturing images to be processed by the detector.

The value of this key is an NSNumber object whose value is a floating-point number between -1.0 and 1.0. Use this option with the CIDetectorTypeRectangle detector type to fine-tune the accuracy of the detector.

检测中使用的焦距选项值为-1~1,配合CIDetectorTypeRectangle使用

CIDetectorAspectRatio

An option specifying the aspect ratio (width divided by height) of rectangles to search for.

The value of this key is an NSNumber object whose value is a positive floating-point number. Use this option with the CIDetectorTypeRectangle detector type to fine-tune the accuracy of the detector. For example, to more accurately find a business card (3.5 x 2 inches) in an image, specify an aspect ratio of 1.75 (3.5 / 2).

矩形检查的宽高比选项,值为正浮点型,配合CIDetectorTypeRectangle使用

CIDetectorReturnSubFeatures

An option specifying whether to return feature information for components of detected features..

The value of this key is an NSNumber object with a Boolean value. Use this option with the CIDetectorTypeText detector type to choose whether to detect only regions likely to contain text (NO, the default) or to also identify sub-regions likely to contain individual characters of text (YES).

是否返回检测结果组件,与CIDetectorTypeText配合使用,默认为NO,如果设置为YES,则CITextFeature的subFeatures中是单个字符的信息

features:一个包含所有检测结果的数组,数组中为CIFeature子类

坐标系转换:

CIDetector之图片检测_第1张图片
CIDetector使用的坐标系
CIDetector之图片检测_第2张图片
我们常用的坐标系


看代码   :

```

CGAffineTransform transform = CGAffineTransformMakeScale(1, -1);

transform = CGAffineTransformTranslate(transform, 0, -image.size.height);

CGPoint point = CGPointApplyAffineTransform(point, transform);

```

这里需要一些基本的数学尝试,通过苹果提供的API进行旋转偏移进行抓换,然后将CIDetector坐标系中的点转为我们常用的坐标系。


提示:人脸检测大家可以使用Face++,或者自己研究OpenCV,我现在正在利用空余时间研究利用OpenCV与OCR技术识别文字,若有进展,再来分享给大家。

感谢您的阅读,如有不足之处还望您能指正。

你可能感兴趣的:(CIDetector之图片检测)