gpt4 book ai didi

ios - 在iOS10中使用AVCapturePhotoOutput-NSGenericException

转载 作者:行者123 更新时间:2023-12-01 17:28:49 25 4
gpt4 key购买 nike

我目前正在尝试弄清楚如何使用iOS 10的AVCapturePhotoOutput方法,但遇到了麻烦。我觉得自己即将做对,但继续收到错误消息:

由于未捕获的异常“NSGenericException”而终止应用程序,原因:“-[[AVCapturePhotoOutput capturePhotoWithSettings:delegate:]没有 Activity 和启用的视频连接”

我试图将这行代码放入AVCapturePhotoCaptureDelegate或我的didPressTakePhoto函数中:

if let videoConnection = stillImageOutput.connection(withMediaType: AVMediaTypeVideo) {
videoConnection.videoOrientation = AVCaptureVideoOrientation.portrait;
...
}

这是我到目前为止的代码:
import AVFoundation
import UIKit

class Camera: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate, AVCapturePhotoCaptureDelegate {

@IBOutlet weak var cameraView: UIView!
@IBOutlet weak var imageView: UIImageView!

var captureSession : AVCaptureSession?
var stillImageOutput : AVCapturePhotoOutput?
var stillImageOutputSettings : AVCapturePhotoSettings?
var previewLayer : AVCaptureVideoPreviewLayer?

var didTakePhoto = Bool();

override func viewDidLoad() {
super.viewDidLoad()

// Do any additional setup after loading the view.
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

override func viewDidAppear(_ animated: Bool) {
super.viewDidAppear(animated);

previewLayer?.frame = cameraView.bounds;
}

override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated);

captureSession = AVCaptureSession();
captureSession?.sessionPreset = AVCaptureSessionPreset1920x1080;

stillImageOutput = AVCapturePhotoOutput();

let backCamera = AVCaptureDevice.defaultDevice(withMediaType: AVMediaTypeVideo);

do {
let input = try AVCaptureDeviceInput(device: backCamera)

if (captureSession?.canAddInput(input))! {
captureSession?.addInput(input);

if (captureSession?.canAddOutput(stillImageOutput))! {
captureSession?.canAddOutput(stillImageOutput);

previewLayer = AVCaptureVideoPreviewLayer(session: captureSession);
previewLayer?.videoGravity = AVLayerVideoGravityResizeAspect;
previewLayer?.connection.videoOrientation = AVCaptureVideoOrientation.portrait;
cameraView.layer.addSublayer(previewLayer!);
captureSession?.startRunning();
}
}
} catch {
print(error);
}
}

func capture(_ captureOutput: AVCapturePhotoOutput, didFinishProcessingPhotoSampleBuffer photoSampleBuffer: CMSampleBuffer?, previewPhotoSampleBuffer: CMSampleBuffer?, resolvedSettings: AVCaptureResolvedPhotoSettings, bracketSettings: AVCaptureBracketedStillImageSettings?, error: Error?) {
if let error = error {
print(error.localizedDescription);
}

if let sampleBuffer = photoSampleBuffer, let previewBuffer = previewPhotoSampleBuffer, let dataImage = AVCapturePhotoOutput.jpegPhotoDataRepresentation(forJPEGSampleBuffer: sampleBuffer, previewPhotoSampleBuffer: previewBuffer) {
print(UIImage(data: dataImage)?.size as Any);

let dataProvider = CGDataProvider(data: dataImage as CFData);
let cgImageRef: CGImage! = CGImage(jpegDataProviderSource: dataProvider!, decode: nil, shouldInterpolate: true, intent: .defaultIntent);
let image = UIImage(cgImage: cgImageRef, scale: 1.0, orientation: UIImageOrientation.right);

self.imageView.image = image;
self.imageView.isHidden = false;
}
}

func didPressTakePhoto() {
stillImageOutputSettings = AVCapturePhotoSettings();

let previewPixelType = stillImageOutputSettings?.availablePreviewPhotoPixelFormatTypes.first!;
let previewFormat = [kCVPixelBufferPixelFormatTypeKey as String: previewPixelType,
kCVPixelBufferWidthKey as String: 160,
kCVPixelBufferHeightKey as String: 160];
stillImageOutputSettings?.previewPhotoFormat = previewFormat;

stillImageOutput.capturePhoto(with: stillImageOutputSettings!, delegate: self);
}

func didPressTakeAnother() {
if (didTakePhoto == true) {
imageView.isHidden = true;
didTakePhoto = false;
} else {
captureSession?.startRunning();
didTakePhoto = true;
didPressTakePhoto();
}
}

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
didPressTakeAnother();
}
}

有什么建议么?

提前致谢!

最佳答案

代码错误。

enter image description here

应该是

if (captureSession?.canAddOutput(stillImageOutput))!{
captureSession?.addOutput(stillImageOutput)
}

关于ios - 在iOS10中使用AVCapturePhotoOutput-NSGenericException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43059282/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com