Difference between revisions of "Function:Rotate"
From CUVI Wiki
(→Sample) |
|||
| Line 3: | Line 3: | ||
===Function=== | ===Function=== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
| Line 23: | Line 23: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 08:19, 18 October 2022
Rotates an image about a specified anchor point
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input image |
| dst | CuviImage& | Output image |
| angle | const Cuvi32f | Angle of rotation |
| anchor | const CuviPoint2D<int> | Center point of rotation |
| roi | const CuviRect& | Region of Interest |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC1 | 8uC1 |
| 8uC3 | 8uC3 |
| 16uC1 | 16uC1 |
| 16uC3 | 16uC3 |
| 32fC1 | 32fC1 |
| 32fC3 | 32fC3 |
Sample
Example
|

