使用CoreImage进行人脸识别

下面是来客网 jb51.cc 通过网络收集整理的代码片段。

来客网小编现在分享给大家,也给大家做个参考。

    - (BOOL)checkImageHasFace  
    {  
        BOOL hasFace = NO;  
        CIImage *begingImage = [[CIImage alloc] initWithImage:_postImage];  
        //创建CIDetector对象,options使用NSDictionary设置采用高品质还是低品质,这里使用低品质。  
        CIDetector *detector = [CIDetector detectorOfType:CIDetectorTypeFace context:nil options:[NSDictionary dictionaryWithObject:CIDetectorAccuracyLow forKey:CIDetectorAccuracy]];  
        //返回数组中包含图片脸部特征信息  
        NSArray *faceFeatures = [detector featuresInImage:begingImage];  
        for (CIFaceFeature *faceFeature in faceFeatures) {  
            //左眼位置、右眼位置和嘴的位置  
            if (faceFeature.hasLeftEyePosition&&faceFeature.hasRightEyePosition&&faceFeature.hasMouthPosition) {  
                hasFace = YES;  
            }  
        }  
        return hasFace;  
    }  

以上是来客网(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得来客网网站内容还不错,欢迎将来客网网站推荐给程序员好友。

以上是来客网为你收集整理的使用CoreImage进行人脸识别全部内容,希望文章能够帮你解决使用CoreImage进行人脸识别所遇到的程序开发问题。

如果觉得来客网网站内容还不错,欢迎将来客网网站推荐给程序员好友。