Difference between revisions of "Function:AutoColor"
From CUVI Wiki
(Created page with "__NOTOC__ Fixes false colors at pixel level of the image using CUVI's own propriety approach. For most clients, this function is always part of the pipeline to ensure best res...") |
m (→Function) |
||
| Line 3: | Line 3: | ||
===Function=== | ===Function=== | ||
{| | {| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus cuvi::colorOperations::autoColor(const CuviImage& src, | CuviStatus cuvi::colorOperations::autoColor(const CuviImage& src, | ||
Revision as of 12:45, 3 January 2022
Fixes false colors at pixel level of the image using CUVI's own propriety approach. For most clients, this function is always part of the pipeline to ensure best results.
Function
CuviStatus cuvi::colorOperations::autoColor(const CuviImage& src,
CuviImage& dst,
const CuviStream& stream = CuviStream());Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input Image |
| dst | CuviImage& | Output Image |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8uC3 | 8uC3 |
| 16uC3 | 16uC3 |
Sample
Example
|

