Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有办法为我的 iPhone 和 iPad 应用程序实现特定算法:
你是怎样做的?有任何想法吗?提前致谢!
我还没有实现任何东西,但据我所知,边缘检测在您的解决方案的某些步骤中是必要的。有一个提供边缘检测的开源库:
在没有仔细研究的情况下,我认为这个库对于您所需算法中的其他任务也可能会派上用场。
查看 Apple 库中的 AVFoundation 和 AVCam。AVCam示例代码演示了如何使用 AV Foundation 捕获 API 来录制电影和拍摄静止图像。
本教程讲述了如何使用 Open CV 来比较图像,这是您应该开始使用的关键方法
- (int)difference((int)topPixel,(int)bottomPixel) { return abs(topPixel-bottomPixel); }
最后一部分是关于显示结果,我希望它对你来说一定很容易..
看看这个类似的问题: 查找相似图像的算法
最可靠和通用的方法是使用小波变换(多尺度分析)。