rossb83
rossb83

Reputation: 1762

C++ Library for 3D Monitor Display

I have 3D point cloud data and I would like to display the output on a 3D monitor. Is there a c++ library that can do this? I would also like the user to be able to pan, rotate, and zoom the point cloud. I am using a nvidia GeForce GT 540M 1GB vram video card.

Upvotes: 1

Views: 486

Answers (1)

Marcus D. Hanwell
Marcus D. Hanwell

Reputation: 6855

There is the Point Cloud Library which uses the Visualization Toolkit to render. They support all basic forms of interaction, and I have used them to render point clouds. I think they would both be good starting points, and they use OpenGL to render. I know VTK has support for 3D displays, but have not used it in that way as I do not have access to a 3D monitor.

Upvotes: 1

Related Questions