lanczos_interpolation

Function lanczos_interpolation 

Source
pub fn lanczos_interpolation<M: Clone, P: GetXY + GetZ, R: GetM<M> + GetXY + GetZ, V: Interpolatable>(
    point: &P,
    ref_data: &[R],
    get_value: GetInterpolateValue<R, V>,
) -> V
Expand description

§Lanczos Interpolation

§Description

Perform interpolation using the Lanczos filter. This method uses a kernel-based approach to weigh contributions from nearby points, providing a balance between smoothing and sharpness.

§Usage