Difference between revisions of "Function:Add"
From CUVI Wiki
| Line 103: | Line 103: | ||
cuvi::arithmeticLogical::add(gimg1,gimg2,gout); | cuvi::arithmeticLogical::add(gimg1,gimg2,gout); | ||
//The same can be achieved by using arithmetic | //The same can be achieved by using arithmetic operators | ||
gout = gimg1 + gimg2; | gout = gimg1 + gimg2; | ||
//Add a constant value to each pixel of the image | |||
gimg1 += 10; | |||
//Add a different value to each channel | |||
gimg2 += CuviScalar(5,10,3); | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Revision as of 11:25, 12 June 2014
Adds two images or adds a constant to each pixel of the image.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src1 | CuviImage& | First Input Image |
| src2 | CuviImage& | Second Input Image |
| dst | CuviImage& | Resultant Image |
| stream | CuviStream& | GPU stream ID for execution |
Image Type Support
| Input 1 | Input 2 | Output |
|---|---|---|
| 8u | 8u | 8u |
| 16u | 16u | 16u |
| 32f | 32f | 32f |
| 8u | 8u | 16u |
| 8u | 8u | 32f |
| 16u | 16u | 32f |
Sample
Example
|


