人脸识别

来源:互联网 发布:商陆花软件好用吗 编辑:程序博客网 时间:2024/06/02 09:58

注意:这里的识别仅指识别出图片中包含人脸


#pragma mark - 人脸识别

- (BOOL)faceRecognition:(UIImage *)image {
    image = [image fixOrientation];
    CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeFace
                                            context:nil
                                            options:nil];
    CIImage *img_ci = [CIImage imageWithCGImage:image.CGImage];
    NSArray *faceArray = [detector featuresInImage:img_ci options:nil];
    
    if (faceArray.count > 0) {
        return YES;
    }
    return NO;
}
0 0
原创粉丝点击