Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bmptorgb(1) [debian man page]

BMPTORGB(1)							   User Commands						       BMPTORGB(1)

NAME
BMPtoRGB - converts BMP files to RGB to stdout RGBtoBMP - converts RGB from stdin to BMP files RGBtoUYVY - converts RGB to UYVY from stdin to stdout RGBtoYUV411 - converts RGB to YUV411 from stdin to stdout RGBtoYUV420 - converts RGB to YUV420 from stdin to stdout RGBtoYUV422 - converts RGB to YUV422 from stdin to stdout RGBtoYUV444 - converts RGB to YUV444 from stdin to stdout UYVYtoRGB - converts UYVY to UYVY from stdin to stdout YUV411toRGB - converts YUV411 to UYVY from stdin to stdout YUV420toRGB - converts YUV420 to UYVY from stdin to stdout YUV422toRGB - converts YUV422 to UYVY from stdin to stdout YUV444toRGB - converts YUV444 to UYVY from stdin to stdout YUV420Down2x2 - filters YUV420 frames to a single output file with half dimensions and subsampling YUV420pt75filter - filters YUV420 frames down to .75 YUV420toYUV422 - converts YUV420 to YUV422 from stdin to stdout YUV422toUYVY - converts YUV422 to UYVY from stdin to stdout YUV422toYUV420 - converts YUV422 to YUV420 from stdin to stdout UYVYtoYUV422 - converts UYVY to YUV422 from stdin to stdout DESCRIPTION
Converts from one to another pixel format. Look at the output of progname for more information. BMPtoRGB July 2005 BMPTORGB(1)

Check Out this Related Man Page

mlib_VideoColorYUV420seq_to_UYVY422int(3MLIB)		    mediaLib Library Functions		     mlib_VideoColorYUV420seq_to_UYVY422int(3MLIB)

NAME
mlib_VideoColorYUV420seq_to_UYVY422int - convert YUV sequential to interleaved SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ] #include <mlib.h> void mlib_VideoColorYUV420seq_to_UYVY422int(mlib_u32 *UYVY, const mlib_u8 *Y, const mlib_u8 *U, const mlib_u8 *V, mlib_s32 w, mlib_s32 h, mlib_s32 dlb, mlib_s32 ylb, mlib_s32 uvlb); DESCRIPTION
The Y, U, V pixel streams are combined into a UYVY pixel stream. All pixel components are 8-bit unsigned integers. The Y buffer has dimen- sions w and h. The U and V buffers have dimensions w/2 and h/2. Dimensions w and h are assumed to be even. Successive rows of the output buffer UYVY use successive rows of Y and the same rows of U and V. The following equation is used: UYVY[r][c/2] = (U[r/2][c/2] << 24) | (Y[r][c] << 16) | (V[r/2][c/2] << 8) | (Y[r][c+1]) UYVY[r+1][c/2] = (U[r/2][c/2] << 24) | (Y[r+1][c] << 16) | (V[r/2][c/2] << 8) | (Y[r+1][c+1]) where r = 0, 2, 4, ..., h-2; and c = 0, 2, 4, ..., w-2. PARAMETERS
The function takes the following arguments: UYVY Pointer to output buffer. Y Pointer to Y input buffer. U Pointer to U input buffer. V Pointer to V input buffer. w Image width in pixels. h Image height in lines. dlb Linebytes for UYVY buffer. ylb Linebytes for Y buffer. uvlb Linebytes for U and V buffers. RETURN VALUES
None. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
mlib_VideoColorYUV420seq_to_YUYV422int(3MLIB), mlib_VideoColorYUV411seq_to_YUYV422int(3MLIB), mlib_VideoCol- orYUV422seq_to_YUYV422int(3MLIB), mlib_VideoColorYUV411seq_to_UYVY422int(3MLIB), mlib_VideoColorYUV422seq_to_UYVY422int(3MLIB), attributes(5) SunOS 5.10 10 Nov 2004 mlib_VideoColorYUV420seq_to_UYVY422int(3MLIB)
Man Page