下面是内存溢出 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进行人脸识别所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)