增强现实图像处理
我需要一些有关增强现实的帮助。 我已经开发了一个小应用程序。现在我想使用形状检测算法或特别是圆形检测算法。我希望在我的相机打开后它应该只检测圆形,如果它得到圆形,它应该被替换为一些相应的图像。 我希望你明白我想做什么。
I need some help on Augmented Reality.
I have develop a small application.NOw I want to use shape detection algorithm or specially circle detection algorithm.I want that after my camera get open It should only detect circles and if it gets circles it should get replaced with some corresponding image.
I hope you understood what I want to do.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要添加(圆形)的形状检测算法,您可以考虑使用 OpenCV 中的霍夫变换进行圆形检测。取自 OpenCV 教程网站,以下是一些片段:
OpenCV 可以完成您提到的任务,并且与 AR 应用程序兼容。
To add shape detection algorithm for (circle), you can consider using circle detection with Hough Transform from OpenCV. Taken from OpenCV tutorial website, here are some snippets:
OpenCV can do the task as you mentioned, and is compatible for AR application.