Difference between revisions of "Function:RGB2Gray"

From CUVI Wiki
 
(One intermediate revision by the same user not shown)
Line 64: Line 64:


====Sample====
====Sample====
[[File:ColoIn.jpg|frame|Color Image]]
[[File:ColoIn.jpg|none|frame|Color Image]]
<br/>
<br/>
[[File:RGB2GrayOut.jpg|frame|Output Gray Image]]
[[File:RGB2GrayOut.jpg|none|frame|Output Gray Image]]
<br/>
<br/>


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



Latest revision as of 13:09, 18 October 2022

Converts an RGB image to gray scale using fixed or custom transform coefficients

Function

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

CuviStatus rgb2gray(const CuviImage& src,
                    CuviImage& dst,
                    const CuviScalar& coeffs,
                    const CuviStream& stream = CuviStream());

Parameters

Name Type Description
src CuviImage& Input 3 channel image
dst CuviImage& Output single channel image
coeffs CuviScalar& Custom transformation coefficients
stream CuviStream& GPU stream ID for execution

Image Type Support

Input Output
8uC3 8uC1
16uC3 16uC1
32fC3 32fC1

Sample

Color Image


Output Gray Image


Example

CuviImage gimg = cuvi::io::loadImage(path), gout;

//Convert to gray-scale using standard coefficients
cuvi::colorOperations::rgb2gray(gimg,gout);

//Convert to gray-scale using custom coefficients
CuviScalar coeffs(0.33, 0.33, 0.33);
cuvi::colorOperations::rgb2gray(gimg,gout, coeffs);