View Source Vix.Vips.Interpolate (vix v0.30.0)
Make interpolators for operators like affine
and mapim
.
Summary
Types
@type t() :: %Vix.Vips.Interpolate{ref: reference()}
Represents an instance of VipsInterpolate
Functions
Make a new interpolator by name.
Make a new interpolator from the libvips class nickname. For example:
{:ok, interpolate} = Interpolate.new("bilindear")
You can get a list of all supported interpolators from the command-line with:
$ vips -l interpolate
See for example affine
.
Make a new interpolator by name.
Make a new interpolator from the libvips class nickname. For example:
interpolate = Interpolate.new!("bilindear")
You can get a list of all supported interpolators from the command-line with:
$ vips -l interpolate
See for example affine
.