【发布时间】:2019-03-21 21:58:34
【问题描述】:
我正在尝试找出在 iOS 应用中从 Tensorflow 模型(Inception 或 mobilenet)运行对象检测的最简单方法。
我有 iOS Tensorflow 图像分类在我自己的应用程序和网络中工作,关注 this example
在我自己的应用程序和网络中使用 Android 中的 Tensorflow 图像分类和对象检测,关注 this example
但是iOS示例不包含物体检测,只有图像分类,那么如何扩展iOS示例代码以支持物体检测,或者iOS中是否有完整的示例? (最好是客观-C)
我确实找到了this 和this,但是它从源代码重新编译了Tensorflow,这看起来很复杂,
还发现了Tensorflow lite,
但同样没有对象检测。
我还找到了一个将 Tensorflow 模型转换为 Apple Core ML 的选项,使用 Core ML,但这似乎很复杂,在 Core ML 中找不到对象检测的完整示例
【问题讨论】:
标签: ios tensorflow machine-learning object-detection-api