YUVtoRGB - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


ImageTools

  

YUVtoRGB

  

convert a YUV color image to  an RGB color image

 

Calling Sequence

Parameters

Options

Description

Examples

Calling Sequence

YUVtoRGB( img, opts )

Parameters

img

-

ColorImage or ColorAImage; input image

opts

-

(optional) equation(s) of the form option = value; specify options for the YUVtoRGB command

Options

• 

inplace = truefalse

  

Specifies whether the operation is performed in-place. This can be used to avoid allocating memory. The default is false.

• 

output = Image

  

Specifies a data structure into which the output is written. This can be used to avoid allocating memory. The size and number of layers must match that of the input. The dimensions of the output image are adjusted so that the row and column indices match the input. The default is NULL.

Description

• 

The YUVtoRGB command converts a color image with a YUV color representation to an RGB color representation. The following linear transformation is applied at each position in the image to the three color layers:

Matrixr,g,b=Matrix1.,−0.00003945707070713,1.13982796717171708,1.,−0.39461016414141419,−0.58050031565656568,1.,2.03199968434343425,−0.00048137626262628Matrixy,u,v

• 

The alpha channel (layer 4), if present, is not affected.

• 

The img parameter is the input image and must be of type ColorImage or ColorAImage.

Examples

withImageTools:

Create three monochromatic layers representing the YUV layers and then combine them into a single image.

img_yCreate100,200,r,csin0.0025c2+r2:

img_y0.21+2FitIntensityimg_y:

img_uCreate100,200,r,cc:

img_u0.4361+2FitIntensityimg_u:

img_vCreate100,200,r,cr:

img_v0.6151+2FitIntensityimg_v:

img_yuvCombineLayersimg_y,img_u,img_v:

Convert the color image to an RGB representation and then extract each layer as a separate monochromatic image.

img_rgbYUVtoRGBimg_yuv:

img_r,img_g,img_bopmap2GetLayer,img_rgb,1,2,3:

Display the original YUV layers (after rescaling to an intensity between 0 and 1), the RGB image, and the RGB layers.

EmbedmapFitIntensity,img_y,img_u,img_v

Embedimg_rgb

Embedimg_r,img_g,img_b

See Also

ImageTools

ImageTools[ColorTransform]

ImageTools[RGBtoYUV]