Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find Natural neighbor interpolation in python [closed]

Does anyone know of any tools to do a natural neighbor interpolation in python? unless i'm being stupid, i can't seem to find it in the scipy.interpolate module

like image 905
SBFRF Avatar asked Oct 30 '22 09:10

SBFRF


1 Answers

Here is a 3D discrete natural neighbor implementation:

https://github.com/innolitics/natural-neighbor-interpolation

Note that the "discrete" is important here; it is an approximation of the true geometric natural neighbor.

enter image description here

like image 70
jdg Avatar answered Nov 15 '22 05:11

jdg