Difference between revisions of "Function:Add"
From CUVI Wiki
| Line 5: | Line 5: | ||
|style="font-size:150%;"| | |style="font-size:150%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus add(CuviImage | CuviStatus add(const CuviImage& src1, | ||
CuviImage | const CuviImage& src2, | ||
CuviImage | CuviImage& dst, | ||
CuviStream | const CuviStream& stream = CuviStream()); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
| Line 19: | Line 19: | ||
! Description | ! Description | ||
|- | |- | ||
| | | src1 | ||
| CuviImage | | CuviImage& | ||
| First Input Image | | First Input Image | ||
|- | |- | ||
| | | src2 | ||
| CuviImage | | CuviImage& | ||
| Second Input Image | | Second Input Image | ||
|- | |- | ||
| | | dst | ||
| CuviImage | | CuviImage& | ||
| Resultant Image | | Resultant Image | ||
|- | |- | ||
| stream | | stream | ||
| CuviStream | | CuviStream& | ||
| GPU stream ID for execution | | GPU stream ID for execution | ||
| Line 77: | Line 77: | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviImage | CuviImage gimg1 = cuvi::io::loadImage(path); | ||
CuviImage | CuviImage gimg2 = cuvi::io::loadImage(path); | ||
CuviImage | CuviImage gout; | ||
//Add | //Add | ||
Revision as of 07:49, 18 April 2013
Adds two images
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 |
| 8u | 8u | 16u |
| 16u | 16u | 16u |
| 32f | 32f | 32f |
Sample
Example
|


