Interpolation of scattered data: What could I do?

Posted by Simon on Stack Overflow See other posts from Stack Overflow or by Simon
Published on 2010-05-25T05:24:19Z Indexed on 2010/05/25 5:31 UTC
Read the original article Hit count: 389

Hi! I need your help.

I'm working on a 3D chart in Java using Java 3D. It should be able to display a bunch of measured values. As measured, the data I get is scattered. This means I will have to interpolate the missing points in order to get my surface plotted nicely.

I didn't study all that 3D-Geometry stuff yet and I don't know where to start. My idea is to triangulate the points to a surface and then, based on the triangulation, interpolate the missing points. (see this to have a rough idea of what I want to achieve)

Does someone have experiences with the interpolation of scattered data? Is my approach the right one? If yes, what kind of data structures and algorithms will I need in order to triangulate my points cloud?

© Stack Overflow or respective owner

Related posts about java

Related posts about interpolation