Difference between revisions of "Function:AND"
From CUVI Wiki
| Line 92: | Line 92: | ||
//The same can be achieved by using logical operators | //The same can be achieved by using logical operators | ||
gout = gimg1 & gimg2; | gout = gimg1 & gimg2; | ||
//Keep only the least 4 bits of the image | |||
gout &= 0x0f; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Revision as of 07:34, 13 June 2014
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
|


