Combines corresponding pixels of two image buffers by a bitwise OR operation
Function
CuviStatus OR(const CuviImage& src1,
const CuviImage& src2,
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
First Input Image
|
Second Input Image
|
Resultant Image
|
Example
CuviImage gimg1 = cuvi::io::loadImage(path);
CuviImage gimg2 = cuvi::io::loadImage(path);
CuviImage gout;
//ORing
cuvi::arithmeticLogical::OR(gimg1,gimg2,gout);
|