gpt4 book ai didi

ios - -[_ SwiftValue integerValue]:无法识别的选择器发送到实例0x60000044d560使用Google Mobile Vision时出错

转载 作者:行者123 更新时间:2023-12-01 18:38:09 25 4
gpt4 key购买 nike

我在我的应用程序中使用Google Mobile Vision。我收到无法识别的选择器lldb崩溃。我已经将问题缩小到这行代码...

   var faceDetector = GMVDetector.init(ofType: GMVDetectorTypeFace, options: options)

这是变量 options:
let options = [GMVDetectorFaceLandmarkType: GMVDetectorFaceLandmark.all, GMVDetectorFaceClassificationType: GMVDetectorFaceClassification.all, GMVDetectorFaceTrackingEnabled: false] as [String : Any]
options出问题了吗?我查看了其他SO帖子,发现大多数问题都来自字典。

我该如何解决这个问题?

最佳答案

使用枚举,GMVDetectorFaceLandmark.all.rawValue等的原始值。

例如:

var faceDetector = GMVDetector(ofType: GMVDetectorTypeFace, options: [GMVDetectorFaceLandmarkType: GMVDetectorFaceLandmark.all.rawValue,
GMVDetectorFaceClassificationType: GMVDetectorFaceClassification.all.rawValue,
GMVDetectorFaceMinSize: 0.3,
GMVDetectorFaceTrackingEnabled: true])

关于ios - -[_ SwiftValue integerValue]:无法识别的选择器发送到实例0x60000044d560使用Google Mobile Vision时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48086731/

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