Difference between revisions of "Function:OR"

From CUVI Wiki
Line 1: Line 1:
__NOTOC__
__NOTOC__
Combines corresponding pixels of two image buffers by a bitwise OR operation
Bitwise OR operation of an image with another image or a constant value.
===Function===
===Function===
{|
{|
|style="font-size:150%;"|
|style="font-size:150%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
CuviStatus OR(const CuviImage& src1,
CuviStatus OR(const CuviImage& src1,
               const CuviImage& src2,
               const CuviImage& src2,
               CuviImage& dst,
               CuviImage& dst,
               const CuviStream& stream = CuviStream());
               const CuviStream& stream = CuviStream());
CuviStatus OR(const CuviImage& src,
              const Cuvi32s value,
              CuviImage& dst,
              const CuviStream& stream = CuviStream());
</syntaxhighlight>
</syntaxhighlight>
|}
|}
Line 77: Line 84:
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">


CuviImage gimg1 = cuvi::io::loadImage(path);
CuviImage gimg2 = cuvi::io::loadImage(path);
CuviImage gout;


//ORing
CuviImage input1 = cuvi::io::loadImage(path);
cuvi::arithmeticLogical::OR(gimg1,gimg2,gout);
CuviImage input2 = cuvi::io::loadImage(path);
CuviImage output;
//OR Operation
cuvi::arithmeticLogical::OR(input1,input2,output);
//The same can be achieved by using OR operator
output = input1 | input2;
//Set last 4 bits of each pixel of the image
output |= 0x0f;


</syntaxhighlight>
</syntaxhighlight>
|}
|}

Revision as of 18:52, 13 June 2014

Bitwise OR operation of an image with another image or a constant value.

Function

CuviStatus OR(const CuviImage& src1,
              const CuviImage& src2,
              CuviImage& dst,
              const CuviStream& stream = CuviStream());
 
CuviStatus OR(const CuviImage& src,
              const Cuvi32s value,
              CuviImage& dst,
              const CuviStream& stream = CuviStream());

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

Error creating thumbnail: Unable to save thumbnail to destination
First Input Image
Error creating thumbnail: Unable to save thumbnail to destination
Second Input Image
Error creating thumbnail: Unable to save thumbnail to destination
Resultant Image


Example

CuviImage input1 = cuvi::io::loadImage(path);
CuviImage input2 = cuvi::io::loadImage(path);
CuviImage output;
 
//OR Operation
cuvi::arithmeticLogical::OR(input1,input2,output);
 
//The same can be achieved by using OR operator
output = input1 | input2;
 
//Set last 4 bits of each pixel of the image
output |= 0x0f;