Difference between revisions of "Function:YUV2RGB"

From CUVI Wiki
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
Convert YUV color model to an RGB image
Convert YUV color model to an RGB image
===Function===
====Function====
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
CuviStatus yuv2rgb(const CuviImage& src,
CuviStatus yuv2rgb(const CuviImage& src,
Line 11: Line 11:
|}
|}


 
====Parameters====
===Parameters===
{|
 
|style="font-size:75%;"|
{|class="wikitable"
{|class="wikitable"
|-
|-
Line 31: Line 31:
| const CuviStream&
| const CuviStream&
| GPU stream ID for execution
| GPU stream ID for execution
 
|}
|}
|}


 
====Image Type Support====
 
{|
===Image Type Support===
|style="font-size:75%;"|
 
{| class="wikitable"
{| class="wikitable"
|-
|-
Line 49: Line 48:
| 16uC3
| 16uC3
|}
|}
===Sample===
{|
|-
|[[File:YUV_RGB_In.jpg|frame|YUV Image]]
|[[File:YUV_RGB_Out.jpg|frame|RGB Image]]
|}
|}


====Sample====
[[File:YUV_RGB_In.jpg|none|frame|YUV Image]]
<br/>
[[File:YUV_RGB_Out.jpg|none|frame|RGB Image]]
<br/>


 
====Example====
===Example===
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">



Latest revision as of 21:15, 18 October 2022

Convert YUV color model to an RGB image

Function

CuviStatus yuv2rgb(const CuviImage& src,
                   CuviImage& dst,
                   const CuviStream& stream = CuviStream());

Parameters

Name Type Description
src const CuviImage& Input YUV image
dst CuviImage& Output RGB image
stream const CuviStream& GPU stream ID for execution

Image Type Support

Input Output
8uC3 8uC3
16uC3 16uC3

Sample

Error creating thumbnail: Unable to save thumbnail to destination
YUV Image


Error creating thumbnail: Unable to save thumbnail to destination
RGB Image


Example

CuviImage input = cuvi::io::loadImage(path), output;

//Convert YUV image to RGB
cuvi::colorOperations::yuv2rgb(input,output);