Difference between revisions of "Function:AND"
From CUVI Wiki
| (7 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Logical | Logical bitwise AND operation between 2 images or an image and a constant value. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang=" | <syntaxhighlight lang="C"> | ||
CuviStatus AND(const CuviImage& src1, | CuviStatus AND(const CuviImage& src1, | ||
const CuviImage& src2, | const CuviImage& src2, | ||
CuviImage& dst, | CuviImage& dst, | ||
const CuviStream& stream = CuviStream()); | const CuviStream& stream = CuviStream()); | ||
CuviStatus AND(const CuviImage& src, | |||
const Cuvi32s value, | |||
CuviImage& dst, | |||
const CuviStream& stream = CuviStream()); | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
====Parameters==== | |||
{| | |||
|style="font-size:75%;"| | |||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
| Line 34: | Line 42: | ||
| const CuviStream& | | const CuviStream& | ||
| GPU stream ID for execution | | GPU stream ID for execution | ||
|} | |||
|} | |} | ||
===Image Type Support=== | ====Image Type Support==== | ||
{| | |||
|style="font-size:75%;"| | |||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| Line 61: | Line 70: | ||
| 16uC3 | | 16uC3 | ||
|} | |} | ||
|} | |} | ||
====Sample==== | |||
[[File:Penguin.jpg|none|frame|First Input Image]] | |||
<br/> | |||
[[File:Bluebird.jpg|none|frame|Second Input Image]] | |||
<br/> | |||
[[File:ANDout.jpg|none|frame|Resultant Image]] | |||
<br/> | |||
===Example=== | ====Example==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
| Line 83: | Line 92: | ||
//ANDing | //ANDing | ||
cuvi::arithmeticLogical::AND(gimg1,gimg2,gout); | cuvi::arithmeticLogical::AND(gimg1,gimg2,gout); | ||
//The same can be achieved by using logical operators | |||
gout = gimg1 & gimg2; | |||
//Keep only the least 4 bits of the image | |||
gout &= 0x0f; | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Latest revision as of 10:35, 18 October 2022
Logical bitwise AND operation between 2 images or an image and a constant value.
Function
|
Parameters
|
Image Type Support
|
Sample
Example
|


