我已使用以下代码检测 IOS 5 的面部
CIImage *cIImage = [CIImage imageWithCGImage:image.CGImage];
CIDetector* detector = [CIDetector detectorOfType:CIDetectorTypeFace context:nil options:[NSDictionary dictionaryWithObject:CIDetectorAccuracyHigh forKey:CIDetectorAccuracy]];
NSArray *features = nil;
features = [detector featuresInImage:cIImage];
if ([features count] == 0)
{
NSDictionary* imageOptions = [NSDictionary dictionaryWithObject:[NSNumber numberWithInt:6] forKey:CIDetectorImageOrientation];
features = [detector featuresInImage:cIImage options:imageOptions];
}
使用此代码,我可以在 IOS 5 中检测到人脸,但最近我们已将系统升级到 Xcode 4.4 和 IOS 6,现在,人脸检测无法正常工作,
在 IOS 6 中检测人脸需要做哪些更改。
任何帮助都受到高度赞赏