3

我正在使用本教程:https ://github.com/BradLarson/GPUImage在 iOS 中创建视频捕获应用程序。

应用程序已启动并正在运行。我有一个查询...

我们使用此代码开始实时视频捕获会话:

 GPUImageVideoCamera *videoCamera = [[GPUImageVideoCamera alloc]        
 initWithSessionPreset:AVCaptureSessionPreset640x480    
 cameraPosition:AVCaptureDevicePositionBack];
 videoCamera.outputImageOrientation = UIInterfaceOrientationPortrait;

 GPUImageFilter *customFilter = [[GPUImageFilter alloc]     
 initWithFragmentShaderFromFile:@"CustomShader"];
 GPUImageView *filteredVideoView = [[GPUImageView alloc] initWithFrame:CGRectMake(0.0,   
 0.0, viewWidth, viewHeight)];


 [videoCamera addTarget:customFilter];
 [customFilter addTarget:filteredVideoView];

 [videoCamera startCameraCapture];

但是如何在这个框架中启用“图像选择器”风格的“点击聚焦”和点击时的曝光校正功能。

可能吗?你能否指出我正确的方向。

请帮忙。

提前致谢。

4

1 回答 1

5

明白了,部分:

 - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {

   UITouch *touch = [touches anyObject];
   CGPoint touchPoint = [touch locationInView:self.view];

    if([videoCamera.inputCamera isFocusPointOfInterestSupported]&&[videoCamera.inputCamera isFocusModeSupported:AVCaptureFocusModeAutoFocus])
   {

   if([videoCamera.inputCamera lockForConfiguration :nil])
   {
    [videoCamera.inputCamera setFocusPointOfInterest :touchPoint];
    [videoCamera.inputCamera setFocusMode :AVCaptureFocusModeLocked];

     if([videoCamera.inputCamera isExposurePointOfInterestSupported])
      {
        [videoCamera.inputCamera setExposurePointOfInterest:touchPoint];
        [videoCamera.inputCamera setExposureMode:AVCaptureExposureModeLocked];
    }
    [videoCamera.inputCamera unlockForConfiguration];
}
}

}

曝光和对焦被锁定,但一段时间后冻结...

正在努力。

于 2013-08-01T07:20:37.023 回答