Difference between revisions of "Function:LUT"
From CUVI Wiki
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Remaps image values according to look up table. | Remaps image values according to look up table. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
| Line 13: | Line 13: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 13:08, 18 October 2022
Remaps image values according to look up table.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | CuviImage& | Input Image |
| mapping | CuviImage& | The look-up table |
| dst | CuviImage& | Resultant Image |
| stream | CuviStream& | GPU stream ID for execution |
Image Type Support
| Type |
|---|
| 8uC1 |
| 8uC3 |
Sample
Example
|