0
바로 아이폰 6 소개에서의 초점 검출의 두 가지 유형, 1. 명암 감지 2 단계 감지 아이폰에서
이 있습니다
6.6+는 위상 탐지를 사용하여 충돌하면서.
나는 다음 줄AVCaptureAutoFocusSystem currentSystem = [self.format autoFocusSystem];
나는 사고에 대한 적절한 설명을 찾을 수없는 생각에 지금은 충돌을 현재의 포커스 시스템을
self.format = [[AVCaptureDeviceFormat alloc] init];
[self.currentDevice setActiveFormat:self.format];
AVCaptureAutoFocusSystem currentSystem = [self.format autoFocusSystem];
if (currentSystem == AVCaptureAutoFocusSystemPhaseDetection)
{
[self.currentDevice addObserver:self forKeyPath:@"lensPosition" options:NSKeyValueObservingOptionNew context:nil];
}
else if(currentSystem == AVCaptureAutoFocusSystemContrastDetection)
{
[self.currentDevice addObserver:self forKeyPath:@"adjustingFocus" options:NSKeyValueObservingOptionNew context:nil];
}
else{
NSLog(@"No observers added");
}
을 얻으려고 노력하지만하고있다.