作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的场景是,我正在尝试实现 Google Firebase CoreML 来进行文本检测。在这里,我在我的项目中安装了一系列 pod,但我仍然得到 Use of undeclared type 'VisionTextDetector'
。如何解决这个问题?
pod 'Firebase/Core'
pod 'Firebase/MLVision'
pod 'Firebase/MLVisionTextModel'
pod 'Firebase/MLVisionFaceModel'
pod 'Firebase/MLVisionBarcodeModel'
pod 'Firebase/MLVision'
pod 'Firebase/MLVisionLabelModel'
下面是我的类文件:
import UIKit
import Firebase
class TextViewController: UIViewController {
lazy var vision = Vision.vision()
var textDetector: VisionTextDetector? // Error: Use of undeclared type 'VisionTextDetector'
}
最佳答案
作为documentation没有提到要导入的实际框架,即 FirebaseMLVision
,因此无论是否有“Firebase”,您都需要导入实际的“MLVision”框架。只需在您的 class
文件顶部添加以下行即可。
导入 FirebaseMLVision
如果您仍然遇到该错误,请告诉我!
关于ios - Swift google firebase VisionTextDetector 显示使用未声明的类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56899808/
我的场景是,我正在尝试实现 Google Firebase CoreML 来进行文本检测。在这里,我在我的项目中安装了一系列 pod,但我仍然得到 Use of undeclared type 'Vi
我是一名优秀的程序员,十分优秀!