引言:作為一個(gè)開(kāi)發(fā)小白禽绪,也注冊(cè)簡(jiǎn)書(shū)也有一段時(shí)間了颜价,但是一直沒(méi)太瀏覽過(guò)桑涎,更別說(shuō)給大家分享一些經(jīng)驗(yàn)了,只能沒(méi)事借鑒別人的經(jīng)驗(yàn)汗唱。突然想到識(shí)別圖片中的二維碼的功能,所以查了一些資料丈攒,發(fā)現(xiàn)CIDetector這個(gè)類(lèi)可以實(shí)現(xiàn)哩罪,在這里簡(jiǎn)單和大家分享一下授霸。
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這個(gè)類(lèi)用于識(shí)別、檢測(cè)靜止圖片或者視頻中的顯著特征(面部际插,矩形和條形碼)碘耳,識(shí)別的具體特征由CIFeature類(lèi)去處理。(由于英文水平有限腹鹉,所有官方文檔只做概述藏畅,英語(yǔ)好的朋友可以細(xì)細(xì)研究)
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類(lèi)只保存基本信息, 所有的附加信息由子類(lèi)保存功咒。
- CIFaceFeature (人臉識(shí)別)
以下是基本屬性愉阎,相信大家也可以看明白(識(shí)別結(jié)果中使用的是坐標(biāo)系和我們常用的有所區(qū)別,這個(gè)會(huì)在后面說(shuō)明)
@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;
這四個(gè)屬性和視頻檢測(cè)相關(guān)力奋,我目前也不知道作何使用榜旦。
@property (readonly, assign) BOOL hasTrackingID;
@property (readonly, assign) int trackingID;
@property (readonly, assign) BOOL hasTrackingFrameCount;
@property (readonly, assign) int trackingFrameCount;
- CIQRCodeFeature (二維碼識(shí)別)
除基本的信息位置之外,只有一個(gè)重要信息景殷,messageString溅呢。
@property (nullable, readonly) NSString* messageString;
- CIRectangleFeature (矩形識(shí)別)
只有基本的位置信息。
- CITextFeature (文本識(shí)別)
除基本的信息位置之外猿挚,只有一個(gè)額外信息咐旧,subFeatures。數(shù)組中是CITextFeature對(duì)象(見(jiàn)后門(mén)解釋?zhuān)?br>
@property (nullable, readonly) NSArray *subFeatures;
開(kāi)始擼代碼 (以人臉識(shí)別為例)
初始化CIDetector
```
CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeFace context:nil options:@{CIDetectorAccuracy : CIDetectorAccuracyHigh}];
```
context:用于檢測(cè)的圖形上下文绩蜻,可不傳
options: CIDetectorAccuracy
A key used to specify the desired accuracy for the detector.
指定檢測(cè)精度 (取值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.
是否開(kāi)啟面部追蹤(視頻中使用)
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.
指定識(shí)別要素最大或最邢衬(值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.
臉部透視數(shù)(值為包含1伊约、3、5孕蝉、7屡律、9、11的NSNumber對(duì)象)
開(kāi)始檢測(cè)
```
NSArray *features = [detector featuresInImage:(CIImage *)image options:(NSDictionary*)options];
```
image: 一個(gè)CIImage對(duì)象
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.
用于要檢測(cè)其要素的圖像的顯示方向的選項(xiàng)降淮。默認(rèn)為1超埋,具體參考kCGImagePropertyOrientation
CIDetectorEyeBlink
An option for whether Core Image will perform additional processing to recognize closed eyes in detected faces.
是否執(zhí)行額外選項(xiàng)處理以識(shí)別面部眼部閉合
CIDetectorSmile
An option for whether Core Image will perform additional processing to recognize smiles in detected faces.
是否執(zhí)行額外選項(xiàng)處理以識(shí)別面部微笑
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.
檢測(cè)中使用的焦距選項(xiàng)值為-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).
矩形檢查的寬高比選項(xiàng)佳鳖,值為正浮點(diǎn)型纳本,配合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).
是否返回檢測(cè)結(jié)果組件,與CIDetectorTypeText配合使用腋颠,默認(rèn)為NO繁成,如果設(shè)置為YES,則CITextFeature的subFeatures中是單個(gè)字符的信息
features:一個(gè)包含所有檢測(cè)結(jié)果的數(shù)組淑玫,數(shù)組中為CIFeature子類(lèi)
坐標(biāo)系轉(zhuǎn)換:
看代碼 ? :
```
CGAffineTransform transform = CGAffineTransformMakeScale(1, -1);
transform = CGAffineTransformTranslate(transform, 0, -image.size.height);
CGPoint point = CGPointApplyAffineTransform(point, transform);
```
這里需要一些基本的數(shù)學(xué)嘗試巾腕,通過(guò)蘋(píng)果提供的API進(jìn)行旋轉(zhuǎn)偏移進(jìn)行抓換面睛,然后將CIDetector坐標(biāo)系中的點(diǎn)轉(zhuǎn)為我們常用的坐標(biāo)系。
提示:人臉檢測(cè)大家可以使用Face++尊搬,或者自己研究OpenCV叁鉴,我現(xiàn)在正在利用空余時(shí)間研究利用OpenCV與OCR技術(shù)識(shí)別文字,若有進(jìn)展佛寿,再來(lái)分享給大家幌墓。
感謝您的閱讀,如有不足之處還望您能指正冀泻。