2

フロントカメラで焦点を合わせようとしています。

override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {

    let screenSize = cameraView.bounds.size

    let frameSize:CGSize = view.frame.size

    if let touchPoint = touches.first {

        var location:CGPoint = touchPoint.locationInView(cameraView)

        print("Tap Location : X: \(location.x), Y: \(location.y)")

        if cameraManager.cameraDevice == .Front {
            print("Front camera is used")

            location.x = frameSize.width - location.x;
        }
        else {
            print("Back camera is used")
        }

        let x = location.x / frameSize.width
        let y = 1.0 - (location.x / frameSize.width)

        let focusPoint = CGPoint(x: x, y: y)

        print("POINT : X: \(x), Y: \(y)")


        let captureDevice = (AVCaptureDevice.devicesWithMediaType(AVMediaTypeVideo) as! [AVCaptureDevice]).filter{$0.position == .Front}.first

        if let device = captureDevice {
            do {
                try device.lockForConfiguration()

                let support:Bool = device.focusPointOfInterestSupported

                if support  {

                    print("focusPointOfInterestSupported: \(support)")

                    device.focusPointOfInterest = focusPoint

                    // device.focusMode = .ContinuousAutoFocus
                    device.focusMode = .AutoFocus
                    // device.focusMode = .Locked

                    device.unlockForConfiguration()

                    print("Focus point was set successfully")
                }
                else{
                    print("focusPointOfInterestSupported is not supported: \(support)")
                }
            }
            catch {
                // just ignore
                print("Focus point error")
            }
        }
    }
}

バックカメラ用のiPhone6で動作します。しかし、フロントカメラを有効にすると、脱穀されました。focusPointOfInterestSupported は常に false を返します。

どうすればこの問題を解決できますか。プログラムでフォーカス ポイントを設定できますか?

ありがとう!

4

1 に答える 1

5

ブール値は、このfocusPointOfInterestSupportedデバイスの前面カメラがこの方法でのフォーカス設定をサポートしていないことを示しています。実際、iPhone 6 の「FaceTime」カメラは焦点が固定されているようです。iPhone 6 の「FaceTime」カメラの技術仕様セクションには「フォーカス」についての言及はありませんが、背面向きの「iSight」カメラのセクションにはあります。さらに、レンズに近いぼやけた物体に正面カメラの焦点を合わせ直そうとすると (カメラ アプリでタップして)、焦点ではなく露出を調整しているように見えます。

ソース: https://developer.apple.com/library/ios/documentation/AVFoundation/Reference/AVCaptureDevice_Class/index.html#//apple_ref/occ/instp/AVCaptureDevice/focusPointOfInterestSupported

ソース: http://www.apple.com/iphone-6/specs/

于 2016-04-18T16:19:37.987 に答える