Difference between revisions of "Function:Round"
From CUVI Wiki
(Created page with "__NOTOC__ Rounds pixels of input image to nearest integer value. ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus round(const CuviImage& src...") |
|||
| Line 3: | Line 3: | ||
===Function=== | ===Function=== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus round(const CuviImage& src, | CuviStatus round(const CuviImage& src, | ||
| Line 10: | Line 10: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 08:05, 18 October 2022
Rounds pixels of input image to nearest integer value.
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 |
|---|---|
| 32fC1 | 32fC1 |
| 32fC3 | 32fC3 |
Example
|