Difference between revisions of "Function:OpticalFlowHS"
From CUVI Wiki
| Line 3: | Line 3: | ||
{| | {| | ||
|style="font-size:150%;"| | |style="font-size:150%;"| | ||
< | <code> | ||
CuviStatus opticalFlowHS(const CuviImage& previous, | CuviStatus opticalFlowHS(const CuviImage& previous, | ||
const CuviImage& next, | const CuviImage& next, | ||
| Line 12: | Line 12: | ||
const Cuvi32s iterations = 1, | const Cuvi32s iterations = 1, | ||
const CuviStream& stream = CuviStream()); | const CuviStream& stream = CuviStream()); | ||
</ | </code> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 11:28, 3 January 2022
Function
|
|
Parameters
| Name | Type | Description |
|---|---|---|
| previous | const CuviImage& | The first image whose features are to be tracked |
| next | const CuviImage& | Second image, in which to look for features of first image |
| flowX | Cuvi32f* | Horizontal velocity vector |
| flowY | Cuvi32f* | Vertical velocity vector |
| usePrevious | bool | use previous (input) velocity field |
| lambda | const Cuvi32f | Lagrangian multiplier |
| iterations | const Cuvi32s | Maximum number of iterations |
| stream | CuviStream* | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC1 | 32fC1 |
Sample
Example
|
