Difference between revisions of "Function:Divide"

From CUVI Wiki
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
__NOTOC__
__NOTOC__
Divides pixel values of first image by corresponding pixels values from second image
Divides pixel values of first image by corresponding pixels values from second image
===Function===
====Function====
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
CuviStatus divide(const CuviImage& src1,
CuviStatus divide(const CuviImage& src1,
Line 11: Line 11:
</syntaxhighlight>
</syntaxhighlight>
|}
|}
===Parameters===


====Parameters====
{|
|style="font-size:75%;"|
{|class="wikitable"
{|class="wikitable"
|-
|-
Line 34: Line 36:
| 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 68: Line 71:
| 32fC3
| 32fC3
| 32fC3
| 32fC3
|}
|}
|}


 
====Code Example====
 
===Example===
{|
{|
|style="font-size:150%;"|
|style="font-size:100%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">



Latest revision as of 20:13, 18 October 2022

Divides pixel values of first image by corresponding pixels values from second image

Function

CuviStatus divide(const CuviImage& src1,
                  const CuviImage& src2,
                  CuviImage& dst,
                  const CuviStream& stream = CuviStream());

Parameters

Name Type Description
src1 const CuviImage& Dividend Image
src2 const CuviImage& Divisor 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
32fC1 32fC1 32fC1
32fC3 32fC3 32fC3

Code Example

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

CuviImage gout;

//Divide
CuviStatus s = cuvi::arithmeticLogical::divide(gimg1,gimg2,gout);

if(s!=CUVI_SUCCESS)
{
   cout<<"Division Failed"<<endl<<"Status = "<<s<<endl;
}