pub fn image_projective_transform_v2<'a, T0: ToTensorHandle<'a>, T1: ToTensorHandle<'a>, T2: ToTensorHandle<'a>>(
    ctx: &'a Context,
    images: &T0,
    transforms: &T1,
    output_shape: &T2
) -> Result<TensorHandle<'a>>
Expand description

Shorthand for ImageProjectiveTransformV2::new().call(&ctx, &images, &transforms, &output_shape).

See : https://www.tensorflow.org/api_docs/python/tf/raw_ops/ImageProjectiveTransformV2