Difference between revisions of "Function:Exp"
From CUVI Wiki
(Created page with "__NOTOC__ Calculates exponential value of each pixel of input image. ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus exp(const CuviImage& s...") |
|||
| Line 40: | Line 40: | ||
! Output | ! Output | ||
|- | |- | ||
| | | 8u | ||
| | | 32f | ||
|- | |- | ||
| | | 16u | ||
| | | 32f | ||
|- | |- | ||
| | | 32f | ||
| | | 32f | ||
|} | |} | ||
===Example=== | ===Example=== | ||
Revision as of 13:30, 13 June 2014
Calculates exponential value of each pixel of input image.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input Image |
| dst | CuviImage& | Destination Image |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8u | 32f |
| 16u | 32f |
| 32f | 32f |
Example
|