英特尔性能基元仅适用于英特尔处理器驱动的设备吗?
我们有使用 IPP 的 openCV 代码。我们想知道这是否可以在 iOS 设备上运行,或者 IPP 仅支持 Intel 处理器机器?谢谢。
We have openCV code that uses IPP. We wonder if this can work on iOS devices or IPP only supports Intel processor machines? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IPP 仅适用于桌面处理器。 (Intel 和 AMD,x86/64 架构。但是,据报道它们在 AMD 上速度较慢)。
OpenCV 在使用 ARM 处理器的移动设备上优化不佳,目前最好的选择似乎是 iOS 4.0 及更高版本提供的 Accelerate 框架。
Accelerate 是一个函数库,包含一些用于图像和信号处理、数学等的优化函数。您可以用 Accelerate 函数替换一些 OpenCV 调用(仅限 iOS 设备)
IPP only works on desktop processors. (Intel and AMD, x86/64 architectures. However, they are reported to be slower on AMDs).
OpenCV is poorly optimized on mobile devices, which use ARM processors, and for now, the best option seems to be the Accelerate framework offered by iOS 4.0 and higher.
Accelerate is a function library containing some optimized functions for image and signal processing, math, etc. You can replace some of the OpenCV calls with Accelerate functions (on iOS devices only)