LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

yuvsplittoppm

Combine YUV component files into a PPM image

TLDR

Combine YUV component files into a PPM image
$ yuvsplittoppm [base] [width] [height] > [output.ppm]
copy
Combine using CCIR 601 (MPEG) colour scaling
$ yuvsplittoppm -ccir601 [base] [width] [height] > [output.ppm]
copy

SYNOPSIS

yuvsplittoppm [-ccir601] basename width height

DESCRIPTION

yuvsplittoppm reads three raw files containing the Y, U, and V colour components and produces a PPM image on standard output. The filenames are derived from basename by appending `.Y`, `.U`, and `.V`. Because the files are raw with no header, the image dimensions must be given on the command line.It is the inverse of [ppmtoyuvsplit](/man/ppmtoyuvsplit)(1) and is part of the Netpbm toolkit.

PARAMETERS

basename

Base name of the component files. Reads basename.Y, basename.U, and basename.V.
width
Image width in pixels.
height
Image height in pixels.
-ccir601
Interpret YUV values using the CCIR 601 (MPEG) range rather than the default JFIF (JPEG) range.

SEE ALSO

Copied to clipboard
Kai