Difference between revisions of "Function:AND"
From CUVI Wiki
| Line 4: | Line 4: | ||
{| | {| | ||
|style="font-size:150%;"| | |style="font-size:150%;"| | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="C"> | ||
CuviStatus AND(const CuviImage& src1, | CuviStatus AND(const CuviImage& src1, | ||
const CuviImage& src2, | const CuviImage& src2, | ||
| Line 17: | Line 17: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 13:16, 3 January 2022
Logical bitwise AND operation between 2 images or an image and a constant value.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src1 | const CuviImage& | First Input Image |
| src2 | const CuviImage& | Second Input 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 |
Sample
Example
|


