pub fn convert_plane_to_f16(
src: &[u8],
src_stride: usize,
dst: &mut [f16],
dst_stride: usize,
width: usize,
height: usize,
) -> Result<(), YuvError>Available on crate feature
nightly_f16 only.Expand description
Converts planar 8-bit image to f16.
ยงArguments
src: Source imagesrc_stride: Source image stridedst: Destination imagedst_stride: Destination image stridewidth: Image widthheight: Image height
returns: Result<(), YuvError>