I have a 3D surface ( such as a cone). It is projected to a 2D plan in the form of contour, meaning that different Z will have different lines on 2D plan. The problem is from the contour, how to recover the 3D surface by using interpolation? We only know about the z difference between different contor lines.
|
The technical term for the "contours" you mentioned is "iso-lines". Once you have a 3D point cloud you can use any one of a number of surface reconstruction algorithms. This company for instance makes an application which does that and you can download a command line demo from their site which will work for up to 30,000 points. |
|||
|
|
|
A surface reconstruction algorithm would a waste of time in this case if your points are in the z=f(x,y) or your shape is convex. For z=f(x,y) is the easy solution
Your shape is convex use a convhull algorithm Your shape is concave use: http://www.advancedmcode.org/surface-recostruction-from-scattered-points-cloud-mycrust-robust.html |
|||
|
|