[−][src]Function arrayfire::skew
pub fn skew<T: HasAfEnum>(
input: &Array<T>,
skew0: f32,
skew1: f32,
odim0: i64,
odim1: i64,
method: InterpType,
is_inverse: bool
) -> Array<T>
Skew an image
Skew function skews the input array along dim0 by skew0 and along dim1 by skew1. The skew areguments are in radians. Skewing the data means the data remains parallel along 1 dimensions but the other dimensions gets moved along based on the angle. If both skew0 and skew1 are specified, then the data will be skewed along both directions. Explicit output dimensions can be specified using odim0 and odim1. All new values that do not map to a location of the input array are set to 0.
Skew is a special case of the transform function.
Parameters
inputis the image to be skewedskew0is the factor by which data is skewed along first dimensionskew1is the factor by which data is skewed along second dimensionodim0is the output length along first dimensionodim1is the output length along second dimensionmethodindicates which interpolation method to use for rotating the image. It uses enum InterpType to identify the interpolation method.is_inverseindicates if to apply inverse/forward transform
Return Values
Skewed Image