Difference between revisions of "Function:Add"
From CUVI Wiki
(Created page with "__NOTOC__ Adds two images ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus add(CuviImage* srcImage1, CuviImage* srcImage2, ...") |
|||
| Line 67: | Line 67: | ||
|[[File:Addin1.jpg|frame|First Input Image]] | |[[File:Addin1.jpg|frame|First Input Image]] | ||
|[[File:Addin2.jpg|frame|Second Input Image]] | |[[File:Addin2.jpg|frame|Second Input Image]] | ||
|- | |||
|[[File:AddOut.jpg|frame| Resultant Image]] | |[[File:AddOut.jpg|frame| Resultant Image]] | ||
|} | |} | ||
Revision as of 06:13, 30 April 2012
Adds two images
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| srcImage1 | CuviImage* | First Input Image |
| srcImage2 | CuviImage* | Second Input Image |
| dstImage | CuviImage* | Resultant Image |
| stream | CuviStream* | GPU stream ID for execution |
Image Type Support
| Input 1 | Input 2 | Output |
|---|---|---|
| 8u | 8u | 8u |
| 8u | 8u | 16u |
| 16u | 16u | 16u |
| 32f | 32f | 32f |
Sample
Example
|


