基于法向量的点云旋转

发布于 2024-11-16 12:14:48 字数 241 浏览 3 评论 0原文

我希望根据地板的方向旋转 3D 点云。我已经检测到地板并计算了其法线向量。我想使用这个法线向量来确保地板上的所有点都具有相同的 y 值。

由于两个归一化向量的点积是它们之间角度的余弦,因此我首先对当前法向量 (0.856, 0.958, 2.58) 以及所需法向量 (0.0, 0.958, 0.0) 进行归一化。点积 = 0.917,因此角度 = 70.586,但在 3 维中,这似乎没有用。我需要进行两次轮换吗?如果是这样,有关于最佳方法的建议吗?

I'm looking to rotate a 3-D point cloud based on the orientation of the floor. I have detected the floor and calculated its normal vector. I want to use this normal vector to ensure that all points on the floor have the same y-value.

Since the dot product of two normalized vectors is the cosine of the angle between them, I first normalize the current normal vector (0.856, 0.958, 2.58) as well as the desired normal vector (0.0, 0.958, 0.0). The dot product = 0.917 and therefore the angle = 70.586, but being in 3 dimensions this does not seem useful. Do I need to perform two rotations? If so, are there any suggestions as to the best approach?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我很OK 2024-11-23 12:14:49

如果您想要将法线向量 A 转换为所需的法线向量 A' 的旋转,则它们的数量是无限的。 (给定一个这样的旋转,您可以应用它,然后将其与围绕 A' 的旋转组合起来,以获得许多执行相同操作的其他旋转。)

在 3-D 中效果很好的一种方法是计算叉积向量 V = A x A'(垂直于包含 AA' 的平面),然后旋转V 之间的角度AA'。 (首先测试 AA' 是否已重合非常重要。)

这里有一个关于如何相当有效地完成所有这些操作的描述 此处

If you want a rotation that will transform a normal vector A into a desired normal vector A', there are an infinite number of them. (Given one such rotation, you can apply it and then compose it with spins around A' to get lots of other rotations that do the same thing.)

One approach that works nicely in 3-D is to compute the cross-product vector V = A x A' (which is normal to the plane containing A and A') and then rotate around V by the angle between A and A'. (It's important to first test that A and A' aren't already coincident.)

There's a description of how to do all this fairly efficiently here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文