pub fn warp_into<P>(
    image: &Image<P>,
    projection: &Projection,
    interpolation: Interpolation,
    default: P,
    out: &mut Image<P>
)
where P: Pixel + Send + Sync, <P as Pixel>::Subpixel: Send + Sync + ValueInto<f32> + Clamp<f32>,
Expand description

Applies a projective transformation to an image, writing to a provided output.

See the warp documentation for more information.