2

MLKit のテキスト検出機能を使用して、デバイスのカメラで撮影した写真のテキストを検出するアプリを作成しようとしています。以下は、私の photoOutput メソッドのコードと、それが呼び出すメソッドのコードです。

func photoOutput(_ output: AVCapturePhotoOutput,
                 didFinishProcessingPhoto photo: AVCapturePhoto,
                 error: Error?) {
    print("worked")
    PHPhotoLibrary.shared().performChanges( {
        let creationRequest = PHAssetCreationRequest.forAsset()
        creationRequest.addResource(with: PHAssetResourceType.photo, data: photo.fileDataRepresentation()!, options: nil)
    }, completionHandler: nil)

    let cgImage = photo.cgImageRepresentation()!.takeRetainedValue()
    print(cgImage)
    let orientation = photo.metadata[kCGImagePropertyOrientation as String] as! NSNumber
    let uiOrientation = UIImage.Orientation(rawValue: orientation.intValue)!
    let image = UIImage(cgImage: cgImage, scale: 1, orientation: uiOrientation)

    self.runTextRecognition(with: image)
}

func runTextRecognition(with image: UIImage) {
    let visionImage = VisionImage(image: image)
    textRecognizer.process(visionImage) { features, error in
        self.processResult(from: features, error: error)
    }
}

func processResult(from text: VisionText?, error: Error?) {
    guard error == nil, let text = text else {
        print("oops")
        return
    }

    print(text.text)

}

アプリを実行して写真を撮るときはいつでも、textRecognizer.process(visionImage) の行まではすべて正常に実行されます。コンソール メッセージは -[Not A Type _cfTypeID]: message sent to deallocated instance 0x106623e20 です。

どんな助けや提案も大歓迎です!さらに情報を含める必要がある場合はお知らせください。

4

1 に答える 1