Linux command
yuvsplittoppm 命令
文本
Uses pipes, overwrite, or deletion. Check paths and options first.
命令示例
Combine YUV component files into a PPM image
yuvsplittoppm [base] [width] [height] > [output.ppm]
Combine using CCIR 601 (MPEG) colour scaling
yuvsplittoppm -ccir601 [base] [width] [height] > [output.ppm]
说明
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(1) and is part of the Netpbm toolkit.
参数
- -ccir601
- Interpret YUV values using the CCIR 601 (MPEG) range rather than the default JFIF (JPEG) range.
FAQ
What is the yuvsplittoppm command used for?
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(1) and is part of the Netpbm toolkit.
How do I run a basic yuvsplittoppm example?
Run `yuvsplittoppm [base] [width] [height] > [output.ppm]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -ccir601 do in yuvsplittoppm?
Interpret YUV values using the CCIR 601 (MPEG) range rather than the default JFIF (JPEG) range.