地平线检测
你好 如何使用霍夫变换来检测图像中的地平线?我们如何使用图像中的纹理信息?
Hi
How is the Hough transform used to detect the horizon in an image? How can we use texture information in images?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
霍夫变换用于检测图像中的直线。当您使用 Prewitt 或 Canny 等边缘过滤器对图像进行预处理时,该变换最有用。在 Matlab 中输入“help hough”以获得一些简单的示例。如果您可以在图像中找到两组线,这些线已知是世界坐标中位于地平面上的平行线的图像投影,那么这些线在图像坐标中连接在一起时的交点将定义您的地平线。
The Hough transform is used to detect straight lines in an image. The transform is most useful when you preprocess the image using an edge filter like Prewitt or Canny. Type "help hough" in Matlab for some simple examples. If you can find two sets of lines in the image which are known to be the image projections of parallel lines that lie on the ground plane in world coordinates then the intersection points of these lines in image coordinates when joined together will define your horizon line.