Difference between revisions of "Function:Rotate"
From CUVI Wiki
(→Sample) |
|||
| (10 intermediate revisions by the same user not shown) | |||
| Line 3: | Line 3: | ||
===Function=== | ===Function=== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
| Line 24: | Line 24: | ||
|} | |} | ||
====Parameters==== | |||
===Parameters=== | {| | ||
|style="font-size:75%;"| | |||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
| Line 45: | Line 45: | ||
| Angle of rotation | | Angle of rotation | ||
|- | |- | ||
| | | anchor | ||
| const | | const CuviPoint2D<int> | ||
| | | Center point of rotation | ||
|- | |||
| | | roi | ||
| | | const CuviRect& | ||
| Region of Interest | |||
| | |||
|- | |- | ||
| stream | | stream | ||
| Line 58: | Line 57: | ||
| GPU stream ID for execution | | GPU stream ID for execution | ||
|} | |||
|} | |} | ||
====Image Type Support==== | |||
{| | |||
===Image Type Support=== | |style="font-size:75%;"| | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| Line 86: | Line 85: | ||
| 32fC3 | | 32fC3 | ||
| 32fC3 | | 32fC3 | ||
|} | |||
|} | |} | ||
===Sample=== | ===Sample=== | ||
[[File:rotate_in.png|none|frame|Input Image]] | |||
<br/> | |||
[[File:rotate_out.png|none|frame|Resultant Image]] | |||
<br/> | |||
====Code Example==== | |||
{| | {| | ||
|- | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | |||
CuviImage src, dst; | |||
CuviStatus s = CUVI_SUCCESS; | |||
s = src.create(ipath, CUVI_LOAD_IMAGE_COLOR); | |||
if (s != CUVI_SUCCESS) printf("\nImage load Error: %d", s); | |||
//Define point of rotation within image or ROI | |||
CuviPoint2D<int> anchor(200, 0); | |||
//Define (optional) ROI | |||
CuviRect roi(50, 100, 200, 150); | |||
//Perform Rotation | |||
s = cuvi::geometryTransforms::rotate(src, dst, 1.44, anchor, roi); | |||
cuvi::io::saveImage(dst, opath); | |||
cuvi:: | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Latest revision as of 08:20, 18 October 2022
Rotates an image about a specified anchor point
Function
|
Parameters
|
Image Type Support
|
Sample
Code Example
|

