Difference between revisions of "Function:ChannelMerge"

From CUVI Wiki
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:
Merges R, G and B Channel to form a color image
Merges R, G and B Channel to form a color image


===Function===
====Function====
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
CuviStatus channelMerge(const CuviImage& red,
CuviStatus channelMerge(const CuviImage& red,
Line 13: Line 13:
</syntaxhighlight>
</syntaxhighlight>
|}
|}
===Parameters===


====Parameters====
{|
|style="font-size:75%;"|
{|class="wikitable"
{|class="wikitable"
|-
|-
Line 40: Line 42:
| 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 58: Line 61:
| 32fC1 x 3
| 32fC1 x 3
| 32fC3
| 32fC3
|}
|}
|}


===Sample===
===Sample===
{|
[[File:Splitred.jpg|none|frame|Red Channel]]
|-
<br/>
|[[File:Splitred.jpg|frame|Red Channel]]
[[File:Splitgreen.jpg|none|frame|Green Channel]]
|[[File:Splitgreen.jpg|frame|Green Channel]]
<br/>
|[[File:Splitblue.jpg|frame|Blue Channel]]
[[File:Splitblue.jpg|none|frame|Blue Channel]]
|[[File:Splitin.jpg|frame|Output Image]]
<br/>
|}
[[File:Splitin.jpg|none|frame|Output Image]]
<br/>




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



Latest revision as of 20:44, 18 October 2022

Merges R, G and B Channel to form a color image

Function

CuviStatus channelMerge(const CuviImage& red,
                        const CuviImage& green,
                        const CuviImage& blue,
                        CuviImage& dst,
                        const CuviStream& stream = CuviStream());

Parameters

Name Type Description
red const CuviImage& Red channel input image
green const CuviImage& Green channel input image
blue const CuviImage& Blue channel input image
dst const CuviImage& 3-channel output Image
stream const CuviStream& GPU stream ID for execution

Image Type Support

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

Sample

Error creating thumbnail: Unable to save thumbnail to destination
Red Channel


Error creating thumbnail: Unable to save thumbnail to destination
Green Channel


Error creating thumbnail: Unable to save thumbnail to destination
Blue Channel


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



Example

//Three single channel images
CuviImage gr = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE);
CuviImage gg = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE);
CuviImage gb = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE);

//A single color image for storing output
CuviImage gout;
	
//Merge R, G and B images into a single colored image
cuvi::colorOperations::channelMerge(gr,gg,gb,gout);