Reputation: 103
I created a depth map from two stereo photos. Now I would like to create something like a 3D model. I know that it is not possible to get a "full 3D model". So, what is possible?
I know about Point Cloud but it gives me problems during linking of the program.
So, the questions are:
What are my options?
What are my options when it comes to displaying on Android?
Upvotes: 2
Views: 2266
Reputation: 10852
You have x and y coordinates of pixels, and you have depth for each pixel. So you have all 3 coordinates to make 3D mesh. Just use standard OpenGL methods to display it.
Upvotes: 1