Bilinear Interpolation Calculator
Interpolate a value inside a grid from its four corner values.
Bilinear interpolation estimates a value inside a rectangle from its four corner values.
The math behind it
First interpolate along the x-direction on the bottom and top edges, then interpolate those two results along y.
Worked example
Corners 10/20/30/40 at the centre (0.5, 0.5) → 25.
FAQ
How is it different from linear interpolation?
Linear works along one dimension; bilinear blends across two.