Bilinear Interpolation Calculator

Bilinear Interpolation Calculator

Estimate a value inside a rectangle from the four corner values.

Last updated: June 2026 | By Patchworkr Team

Rectangle interpolation
Interpolated value
16
bilinear result
Normalized x
0.4
Normalized y
0.6

Formula

f(x, y) = q11(1 - t)(1 - u) + q21t(1 - u) + q12(1 - t)u + q22tu

t = (x - x1) / (x2 - x1), u = (y - y1) / (y2 - y1)

Related Tools