Difference between revisions of "Function:Invert"
From CUVI Wiki
(Created page with "__NOTOC__ Computes matrix inverse of a square image. ===Function=== {| |style="font-size:150%;"| <syntaxhighlight lang="cpp"> CuviStatus invert(const CuviImage& src, ...") |
|||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Computes matrix inverse of a square image. | Computes matrix inverse of a square image using LU factorization. | ||
===Function=== | ===Function=== | ||
{| | {| | ||
Revision as of 12:32, 12 June 2014
Computes matrix inverse of a square image using LU factorization.
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 |
Example
|