Difference between revisions of "Function:Divide"
From CUVI Wiki
| Line 5: | Line 5: | ||
|style="font-size:150%;"| | |style="font-size:150%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus divide(CuviImage | CuviStatus divide(const CuviImage& src1, | ||
CuviImage | const CuviImage& src2, | ||
CuviImage | CuviImage& dst, | ||
CuviStream | const CuviStream& stream = CuviStream()); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
| Line 19: | Line 19: | ||
! Description | ! Description | ||
|- | |- | ||
| | | src1 | ||
| CuviImage | | const CuviImage& | ||
| Dividend Image | | Dividend Image | ||
|- | |- | ||
| | | src2 | ||
| CuviImage | | const CuviImage& | ||
| Divisor Image | | Divisor Image | ||
|- | |- | ||
| | | dst | ||
| CuviImage | | CuviImage& | ||
| Resultant Image | | Resultant Image | ||
|- | |- | ||
| stream | | stream | ||
| CuviStream | | const CuviStream& | ||
| GPU stream ID for execution | | GPU stream ID for execution | ||
| Line 77: | Line 77: | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviImage | CuviImage gimg1 = cuvi::io::loadImage(path); | ||
CuviImage | CuviImage gimg2 = cuvi::io::loadImage(path); | ||
CuviImage gout; | |||
//Divide | //Divide | ||
cuvi::arithmeticLogical::divide(gimg1,gimg2,gout); | CuviStatus s = cuvi::arithmeticLogical::divide(gimg1,gimg2,gout); | ||
if(s!=CUVI_SUCCESS) | |||
{ | |||
cout<<"Division Failed"<<endl<<"Status = "<<s<<endl; | |||
} | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Revision as of 11:48, 18 April 2013
Divides pixel values of first image by corresponding pixels values from second image
Function
|
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 |
Example
|