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