Difference between revisions of "Function:Add"
From CUVI Wiki
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Adds two images or adds a constant to each pixel of the image. | Adds two images or adds a constant to each pixel of the image. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus add(const CuviImage& src1, | CuviStatus add(const CuviImage& src1, | ||
| Line 22: | Line 22: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 10:32, 18 October 2022
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
|


