Difference between revisions of "Function:AbsDiff"
From CUVI Wiki
| Line 3: | Line 3: | ||
===Function=== | ===Function=== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus absDiff(const CuviImage& src1, | CuviStatus absDiff(const CuviImage& src1, | ||
| Line 11: | Line 11: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 10:31, 18 October 2022
Computes absolute difference between pixels of 2 images. Each channel is processed individually.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src1 | const CuviImage& | First Input Image |
| src2 | const 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 |
| 8u | 16u | 16u |
| 16u | 8u | 16u |
| 8u | 32f | 32f |
| 32f | 8u | 32f |
| 8u | 16u | 32f |
| 16u | 8u | 32f |
| 16u | 32f | 32f |
| 32f | 16u | 32f |
Example
|