OpenGL表面和纹理
我有:
- 3d 点集,它是根据 3d 计算出来的 N帧的重建过程。
- 示例帧快照(例如 当相机在 (0,0,0))
- 3d 到 2d 对应
时的第一帧我想要:
- 创建点集的三角测量和 在其上放置纹理(帧快照)。
我怎样才能通过OpenGL创建这个三角测量+纹理?
I have:
- 3d pointset, which is calculated from 3d
reconstruction process from N frame. - sample frame snapshot (for example
first frame when camera in (0,0,0)) - 3d to 2d corresponds
I want:
- create triangulation of point set and
put texture (frame snapshot) on it.
How can I create this triangulation + texture via OpenGL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
三角测量必须是重建过程的一部分。 OpenGL 与此无关。
完成三角测量后,您可以通过将原始帧中顶点的 2D 屏幕坐标指定为纹理 UV 坐标来投影纹理。
Triangulation must be part of the reconstruction process. OpenGL has nothing to do with it.
When you done the triangulation you project the texture by specifying 2d screen coordinates of the vertices in the original frame as texture UV coordinates.