Expand description
Interpolation functions (Linear, Bilinear, Spline).
Structs§
Functions§
- bilinear_
interp_ f32 - Bilinear interpolation for 2D grid of size
num_rows x num_cols. - linear_
interp_ f32 - Linear interpolation for f32: y = y0 + (x - x0) * (y1 - y0) / (x1 - x0).
- linear_
interp_ q15 - linear_
interp_ q31