12

当视图中的内容发生变化时,如何在失去焦点后自动从特定 POI 的“点击聚焦”切换回“自动聚焦”状态?如果您注意到股票相机应用程序或 UIImagePickerController 中的对焦行为,在您点击对焦某个区域并将手机移开后,相机可以自动切换到屏幕中央的连续自动对焦。

我需要比 UIImagePickerController 提供的更多的灵活性,所以我需要首先使用 AVFoundation 来模仿 UIImagePickerController 的行为......

4

2 回答 2

14

起初对我来说这听起来很复杂……但后来变得超级简单,Apple 已经为我们完成了 99% 的工作。您需要做的就是设置“ subjectAreaChangeMonitoringEnabled ”并在“AVCaptureDeviceSubjectAreaDidChangeNotification”上注册KVO!在 iOS 6.1 文档中:

此属性的值指示接收器是否应监视视频主题区域的变化,例如照明变化、实质性移动等。如果启用了主题区域更改监视,则捕获设备对象在检测到主题区域发生更改时发送 AVCaptureDeviceSubjectAreaDidChangeNotification,此时感兴趣的客户端可能希望重新聚焦、调整曝光、白平衡等。

在更改此属性的值之前,您必须调用 lockForConfiguration: 以获取对设备配置属性的独占访问权限。如果不这样做,则设置此属性的值会引发异常。完成设备配置后,调用 unlockForConfiguration 以释放锁定并允许其他设备配置设置。

您可以使用键值观察来观察此属性值的变化。

(更好的是,您不需要处理许多极端情况。如果设备在 POI 处“调整焦点”并且内容发生变化怎么办?您不希望设备回落到中心自动对焦, 并希望焦点动作完成。“区域发生变化通知”仅在焦点完成后触发。)

我的项目中的一些示例代码片段。(结构沿用了官方的 AVFoundation 示例 AVCam,所以大家可以很方便的放入并试用):

// CameraCaptureManager.m

@property (nonatomic, strong) AVCaptureDevice *backFacingCamera;

- (id) init{
    self = [super init];
    if (self){

        // TODO: more of your setup code for AVFoundation capture session
        for (AVCaptureDevice *device in [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo]) {
            if (device.position == AVCaptureDevicePositionBack){
                self.backFacingCamera = device;
            }
        }

        NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];

        void (^subjectAreaDidChangeBlock)(NSNotification *) = ^(NSNotification *notification) {

            if (self.videoInput.device.focusMode == AVCaptureFocusModeLocked ){
                // All you need to do is set the continuous focus at the center. This is the same behavior as
                // in the stock Camera app
                [self continuousFocusAtPoint:CGPointMake(.5f, .5f)];
            }
        };

        self.subjectAreaDidChangeObserver = [notificationCenter addObserverForName:AVCaptureDeviceSubjectAreaDidChangeNotification
                                                                            object:nil
                                                                             queue:nil
                                                                        usingBlock:subjectAreaDidChangeBlock];

        [[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
        [self addObserver:self forKeyPath:keyPathAdjustingFocus options:NSKeyValueObservingOptionNew context:NULL];
    }

    return self;
}

-(void) dealloc{
    // Remove the observer when done
    NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
    [notificationCenter removeObserver:self.deviceOrientationDidChangeObserver];
}

- (BOOL) setupSession{
    BOOL sucess = NO;

    if ([self.backFacingCamera lockForConfiguration:nil]){
        // Turn on subject area change monitoring
        self.backFacingCamera.subjectAreaChangeMonitoringEnabled = YES;
    }

    [self.backFacingCamera unlockForConfiguration];

    // TODO: Setup add input etc...

    return sucess;
}
于 2013-05-30T18:34:24.063 回答
0

我刚刚看到@Xiaochao Yang 的答案的评论,我想添加一些代码解释CGPointMake(.5f, .5f)。根据苹果的API,你给相机设置的CGPoint在{0,0}到{1,1}的范围内,同时CGPointMake(.5f, .5f)表示相机的中心。

此属性表示一个 CGPoint,其中 {0,0} 对应于图片区域的左上角,{1,1} 对应于横向模式下的右下角,主页按钮在右侧——即使设备是在纵向模式下

来自AVCaptureDevice 类参考

于 2015-06-16T12:19:57.603 回答