Difference between revisions of "Function:Pow"
From CUVI Wiki
| Line 3: | Line 3: | ||
Raises each pixel of the image to the specified power. | Raises each pixel of the image to the specified power. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus pow(const CuviImage& src, | CuviStatus pow(const CuviImage& src, | ||
Revision as of 12:24, 18 October 2022
Raises each pixel of the image to the specified power.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input Image |
| power | const Cuvi32f | Power by which each pixel would be raised. |
| dst | CuviImage& | Output Image |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC1 | 32fC1 |
| 8uC3 | 32fC3 |
| 16uC1 | 32fC1 |
| 16uC3 | 32fC3 |
| 32fC1 | 32fC1 |
| 32fC3 | 32fC3 |
Example
|