簡體   English   中英

使用TrueDepth攝像頭拍攝照片時出現“無活動和已啟用視頻連接”錯誤

[英]'No active and enabled video connection' error when capturing photo with TrueDepth cam

我正在嘗試從TrueDepth相機記錄深度數據以及照片。 但是當調用AVCapturePhotoOutput capturePhoto(withSettings,delegate)

我得到一個異常說明:

No active and enabled video connection

我像這樣配置相機和輸出(基本上遵循Apple關於照片拍攝拍攝深度的指南 ):

func configurePhotoOutput() throws {
            self.captureSession = AVCaptureSession()

            guard self.captureSession != nil else {
                return
            }

            // Select a depth-capable capture device.
            guard let videoDevice = AVCaptureDevice.default(.builtInTrueDepthCamera,
                                                            for: .video, position: .unspecified)
                else { fatalError("No dual camera.") }

            // Select a depth (not disparity) format that works with the active color format.
            let availableFormats = videoDevice.activeFormat.supportedDepthDataFormats
            let depthFormat = availableFormats.first(where: { format in
                let pixelFormatType = CMFormatDescriptionGetMediaSubType(format.formatDescription)
                return (pixelFormatType == kCVPixelFormatType_DepthFloat16 ||
                    pixelFormatType == kCVPixelFormatType_DepthFloat32)
            })

            do {
                try videoDevice.lockForConfiguration()
                videoDevice.activeDepthDataFormat = depthFormat
                videoDevice.unlockForConfiguration()
            } catch {
                print("Could not lock device for configuration: \(error)")
                return
            }

            self.captureSession!.beginConfiguration()

            // add video input
            guard let videoDeviceInput = try? AVCaptureDeviceInput(device: videoDevice),
                self.captureSession!.canAddInput(videoDeviceInput)
                else { fatalError("Can't add video input.") }
            self.captureSession!.addInput(videoDeviceInput)

            // add video output
            if self.captureSession!.canAddOutput(videoOutput) {
                self.captureSession!.addOutput(videoOutput)
                videoOutput.videoSettings = [kCVPixelBufferPixelFormatTypeKey as String: Int(kCVPixelFormatType_32BGRA)]
            } else { fatalError("Can't add video output.") }


            // Set up photo output for depth data capture.
            let photoOutput = AVCapturePhotoOutput()
            photoOutput.isDepthDataDeliveryEnabled = photoOutput.isDepthDataDeliverySupported
            guard self.captureSession!.canAddOutput(photoOutput)
                else { fatalError("Can't add photo output.") }
            self.captureSession!.addOutput(photoOutput)
            self.captureSession!.sessionPreset = .photo

            self.captureSession!.commitConfiguration()
            self.captureSession!.startRunning()
        }

以及負責捕獲照片的代碼:

func captureImage(delegate: AVCapturePhotoCaptureDelegate,completion: @escaping (UIImage?, Error?) -> Void) {
    let photoSettings = AVCapturePhotoSettings(format: [AVVideoCodecKey: AVVideoCodecType.hevc])
    photoSettings.isDepthDataDeliveryEnabled =
        self.photoOutput.isDepthDataDeliverySupported
    photoSettings.isDepthDataFiltered = false

    self.photoOutput.capturePhoto(with: photoSettings, delegate: delegate) // <---- error is being thrown on this call
    self.photoCaptureCompletionBlock = completion
}

我在此配置中做錯了什么?

通過以下實現解決了該問題:

任何意見/評論都受到高度贊賞!

import AVFoundation
import UIKit

class CameraController: NSObject {

    var captureSession: AVCaptureSession?
    var videoDevice: AVCaptureDevice?
    var previewLayer: AVCaptureVideoPreviewLayer?

    var videoOutput = AVCaptureVideoDataOutput()
    var photoOutput = AVCapturePhotoOutput()

    func prepare(completionHandler: @escaping (Error?) -> Void) {
        func createCaptureSession() {
            captureSession = AVCaptureSession()
        }
        func configureCaptureDevices() throws {
            // Select a depth-capable capture device.
            guard let vd = AVCaptureDevice.default(.builtInTrueDepthCamera,
                                                            for: .video, position: .unspecified)
                else { fatalError("No dual camera.") }
            videoDevice = vd

            // Select a depth (not disparity) format that works with the active color format.
            let availableFormats = videoDevice!.activeFormat.supportedDepthDataFormats
            let depthFormat = availableFormats.first(where: { format in
                let pixelFormatType = CMFormatDescriptionGetMediaSubType(format.formatDescription)
                return (pixelFormatType == kCVPixelFormatType_DepthFloat16 ||
                    pixelFormatType == kCVPixelFormatType_DepthFloat32)
            })

            do {
                try videoDevice!.lockForConfiguration()
                videoDevice!.activeDepthDataFormat = depthFormat
                videoDevice!.unlockForConfiguration()
            } catch {
                print("Could not lock device for configuration: \(error)")
                return
            }
        }
        func configureDeviceInputs() throws {
            if( captureSession == nil) {
                throw CameraControllerError.captureSessionIsMissing
            }
            captureSession?.beginConfiguration()

            // add video input
            guard let videoDeviceInput = try? AVCaptureDeviceInput(device: self.videoDevice!),
                captureSession!.canAddInput(videoDeviceInput)
                else { fatalError("Can't add video input.") }
            captureSession!.addInput(videoDeviceInput)
            captureSession?.commitConfiguration()
        }
        func configurePhotoOutput() throws {
            guard let captureSession = self.captureSession else { throw CameraControllerError.captureSessionIsMissing }
            captureSession.beginConfiguration()

            // Set up photo output for depth data capture.
            photoOutput = AVCapturePhotoOutput()

            photoOutput.setPreparedPhotoSettingsArray([AVCapturePhotoSettings(format: [AVVideoCodecKey: AVVideoCodecType.hevc])], completionHandler: nil)


            guard captureSession.canAddOutput(photoOutput)
                else { fatalError("Can't add photo output.") }
            captureSession.addOutput(photoOutput)
            // must be set after photoOutput is added to captureSession. Why???
            photoOutput.isDepthDataDeliveryEnabled = photoOutput.isDepthDataDeliverySupported
            captureSession.sessionPreset = .photo
            captureSession.commitConfiguration()

            captureSession.startRunning()
        }

        DispatchQueue(label: "prepare").async {
            do {
                createCaptureSession()
                try configureCaptureDevices()
                try configureDeviceInputs()
                try configurePhotoOutput()
            }

            catch {
                DispatchQueue.main.async {
                    completionHandler(error)
                }

                return
            }

            DispatchQueue.main.async {
                completionHandler(nil)
            }
        }
    }

    func displayPreview(on view: UIView) throws {
        guard let captureSession = self.captureSession, captureSession.isRunning else { throw CameraControllerError.captureSessionIsMissing }

        self.previewLayer = AVCaptureVideoPreviewLayer(session: captureSession)
        self.previewLayer?.videoGravity = AVLayerVideoGravity.resizeAspectFill
        self.previewLayer?.connection?.videoOrientation = .portrait

        view.layer.insertSublayer(self.previewLayer!, at: 0)
        self.previewLayer?.frame = view.frame
    }


    func captureImage(delegate: AVCapturePhotoCaptureDelegate,completion: @escaping (UIImage?, Error?) -> Void) {
        let photoSettings = AVCapturePhotoSettings(format: [AVVideoCodecKey: AVVideoCodecType.hevc])
        photoSettings.isDepthDataDeliveryEnabled = true
        photoSettings.isDepthDataFiltered = false
        self.photoOutput.capturePhoto(with: photoSettings, delegate: delegate)
        self.photoCaptureCompletionBlock = completion
    }

    var photoCaptureCompletionBlock: ((UIImage?, Error?) -> Void)?
}

extension CameraController {
    public enum CameraPosition {
        case front
        case rear
    }

    enum CameraControllerError: Swift.Error {
        case captureSessionAlreadyRunning
        case captureSessionIsMissing
        case inputsAreInvalid
        case invalidOperation
        case noCamerasAvailable
        case unknown
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM