Difference between revisions of "Function:Subtract"
From CUVI Wiki
| Line 5: | Line 5: | ||
|style="font-size:150%;"| | |style="font-size:150%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus subtract(CuviImage | CuviStatus subtract(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 | | const CuviImage& | ||
| First Image | | First Image | ||
|- | |- | ||
| | | src2 | ||
| CuviImage | | const CuviImage& | ||
| Second Image | | Second Image | ||
|- | |- | ||
| | | dst | ||
| CuviImage | | CuviImage& | ||
| Resultant Image | | Resultant Image | ||
|- | |- | ||
| stream | | stream | ||
| CuviStream | | const CuviStream& | ||
| GPU stream ID for execution | | GPU stream ID for execution | ||
| Line 87: | Line 87: | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviImage | CuviImage gimg1 = cuvi::io::loadImage(path); | ||
CuviImage | CuviImage gimg2 = cuvi::io::loadImage(path); | ||
CuviImage | CuviImage gout; | ||
//Subtract two images | //Subtract two images | ||
Revision as of 09:17, 19 April 2013
Subtracts pixel values of second image from the first image
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src1 | const CuviImage& | First Image |
| src2 | const CuviImage& | Second Image |
| dst | CuviImage& | Resultant Image |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input 1 | Input 2 | Output |
|---|---|---|
| 8uC1 | 8uC1 | 8uC1 |
| 8uC3 | 8uC3 | 8uC3 |
| 16uC1 | 16uC1 | 16uC1 |
| 16uC3 | 16uC3 | 16uC3 |
| 32fC1 | 32fC1 | 32fC1 |
| 32fC3 | 32fC3 | 32fC3 |
Sample
Example
|


