Difference between revisions of "Function:AutoColor"

From CUVI Wiki
Line 9: Line 9:
|}
|}


===Parameters===
====Parameters====
 
{|
|style="font-size:150%;"|
{|class="wikitable" style="background-color:#D4F4B4;"
{|class="wikitable" style="background-color:#D4F4B4;"
|-
|-
Line 28: Line 29:
| const CuviStream&
| const CuviStream&
| GPU stream ID for execution
| GPU stream ID for execution
 
|}
|}
|}



Revision as of 20:37, 18 October 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

Error creating thumbnail: Unable to save thumbnail to destination
Input
Error creating thumbnail: Unable to save thumbnail to destination
Output

Example

CuviImage input("D:/false.jpg", CUVI_LOAD_IMAGE_COLOR_KEEP_DEPTH), output;
 
//Perform low-light enhancement
cuvi::colorOperations::autoColor(input, output);

//Save Output to file
cuvi::io::saveImage(output, "D:/true.jpg");