Я пытаюсь создать простое приложение с помощью одной кнопки.Нажмите на кнопку, чтобы сделать снимок, затем, используя "TesseractOCR"
, я преобразую написанный текст на изображении в текст строки и просматриваю его в моем «Просмотр текста».
Я все сделал, камера и "TesseractOCR", единственная проблема, с которой я сталкиваюсь, заключается в следующем:
tesseract.image = UIImage(named: selectedImage)
Дает мне эту ошибку:
Невозможно преобразовать значение типа 'UIImage' в ожидаемый тип аргумента 'String'.
Примечание: selectedImage предполагает имя изображения, которое Тессеракт использует для преобразования изображения в текст.
Вот мой код:
import UIKit
import TesseractOCR
class secondViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate, G8TesseractDelegate {
@IBOutlet weak var viewText: UITextView!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
}
@IBAction func takePhoto(_ sender: Any) {
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerController.SourceType.camera) {
let imagePicker = UIImagePickerController()
imagePicker.delegate = self
imagePicker.sourceType = UIImagePickerController.SourceType.camera
imagePicker.allowsEditing = false
self.present(imagePicker, animated: true, completion: nil)
}
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) {
// The info dictionary may contain multiple representations of the image. You want to use the original.
guard let selectedImage = info[.originalImage] as? UIImage else {
fatalError("Expected a dictionary containing an image, but was provided the following: \(info)")
}
// Set photoImageView to display the selected image.
if let tesseract = G8Tesseract(language: "eng") {
tesseract.delegate = self
tesseract.image = UIImage(named: selectedImage)
tesseract.recognize()
textView.text = tesseract.recognizedText
}
// Dismiss the picker.
dismiss(animated: true, completion: nil)
}
}