尝试使用Apple的面部检测API获得简单的概念证明。我看了几个其他的例子,包括Apple的SquareCam和这个 https://github.com/jeroentrappers/FaceDetectionPOC
基于这些,似乎我遵循正确的模式来获得API,但我被卡住了。无论我做什么,面部探测器的CIDetector总是零!
我会非常感谢任何帮助,线索 - 提示 - 建议!
-(void)initCamera{
session = [[AVCaptureSession alloc]init];
AVCaptureDevice *device;
/*
if([self frontCameraAvailable]){
device = [self frontCamera];
}else{
device = [self backCamera];
}*/
device = [self frontCamera];
isUsingFrontFacingCamera = YES;
NSError *error = nil;
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:device error:&error];
if(input && [session canAddInput:input]){
[session addInput:input];
}else{
NSLog(@"Error %@", error);
//make this Dlog...
}
videoDataOutput = [[AVCaptureVideoDataOutput alloc]init];
NSDictionary *rgbOutputSettings = [NSDictionary dictionaryWithObject:
[NSNumber numberWithInt:kCMPixelFormat_32BGRA] forKey:(id)kCVPixelBufferPixelFormatTypeKey];
[videoDataOutput setVideoSettings:rgbOutputSettings];
[videoDataOutput setAlwaysDiscardsLateVideoFrames:YES];
videoDataOutputQueue = dispatch_queue_create("VideoDataOutputQueue", DISPATCH_QUEUE_SERIAL);
[videoDataOutput setSampleBufferDelegate:self queue:videoDataOutputQueue];
[[videoDataOutput connectionWithMediaType:AVMediaTypeVideo]setEnabled:YES];
if ([session canAddOutput:videoDataOutput]) {
[session addOutput:videoDataOutput];
}
[self embedPreviewInView:self.theImageView];
[session startRunning];
}
-(void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection{
CVPixelBufferRef pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
CFDictionaryRef attachments = CMCopyDictionaryOfAttachments(kCFAllocatorDefault, sampleBuffer, kCMAttachmentMode_ShouldPropagate);
CIImage *ciImage = [[CIImage alloc] initWithCVPixelBuffer:pixelBuffer options:(__bridge NSDictionary *)attachments];
if(attachments){
CFRelease(attachments);
}
UIDeviceOrientation curDeviceOrientation = [[UIDevice currentDevice] orientation];
NSDictionary *imageOptions = @{CIDetectorImageOrientation:[self exifOrientation:curDeviceOrientation] };
NSDictionary *detectorOptions = @{CIDetectorAccuracy: CIDetectorAccuracyLow};
CIDetector *faceDetector = [CIDetector detectorOfType:CIFeatureTypeFace context:nil options:detectorOptions];
NSArray *faceFeatures = [faceDetector featuresInImage:ciImage options:imageOptions];
if([faceFeatures count]>0){
NSLog(@"GOT a face!");
NSLog(@"%@", faceFeatures);
}
dispatch_async(dispatch_get_main_queue(), ^(void) {
//NSLog(@"updating main thread");
});
}
答案 0 :(得分:1)
CIDetector *smileDetector = [CIDetector detectorOfType:CIDetectorTypeFace
context:context
options:@{CIDetectorTracking: @YES,
CIDetectorAccuracy: CIDetectorAccuracyLow}];
NSArray *features = [smileDetector featuresInImage:image options:@{CIDetectorSmile:@YES}];
if (([features count] > 0) && (((CIFaceFeature *)features[0]).hasSmile)) {
UIImageWriteToSavedPhotosAlbum(image, self, @selector(didFinishWritingImage), features);
} else {
self.label.text = @"Say Cheese!"
}
答案 1 :(得分:0)
我假设你正在使用this文章,因为我也是,并且遇到了同样的问题。他的代码实际上存在一个错误。 CIDetector实例化应该如下所示:
CIDetector *smileDetector = [CIDetector detectorOfType:CIDetectorTypeFace
context:context
options:@{CIDetectorTracking: @YES,
CIDetectorAccuracy: CIDetectorAccuracyLow}];
请注意,检测器类型是CIDetectorTypeFace,而不是CIDetectorSmile。 CIDetectorSmile是一个功能选项而不是检测器类型,因此要仅提取微笑(而不是所有面),请使用以下代码:
NSArray *features = [smileDetector featuresInImage:image options:@{CIDetectorSmile: @YES}];