Difference between revisions of "Function:Demosaic"

From CUVI Wiki
Line 67: Line 67:
|style="font-size:150%;"|
|style="font-size:150%;"|
<syntaxhighlight lang="cpp">
<syntaxhighlight lang="cpp">
 
CuviImage input("D:/bayer.tif", CUVI_LOAD_IMAGE_GRAYSCALE_KEEP_DEPTH), output;
//Example using C
 
cuvi::colorOperations::demosaic_DFPD(input, output, CUVI_BAYER_RGGB);
CuviImage gimg = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE_KEEP_DEPTH), gout;
// Or this to further refine the results
 
cuvi::colorOperations::demosaic_DFPD(input, output, CUVI_BAYER_RGGB, true);
 
//Demosaic
cuvi::io::saveImage(output, "D:/debayered.png");
cuvi::colorOperations::demosaic(gimg,gout,CUVI_BAYER_BGGR);


</syntaxhighlight>
</syntaxhighlight>
|}
|}

Revision as of 16:17, 12 June 2014

Restores an RGB image from a gray-scale CFA image using Bayer algorithm

Function

CuviStatus demosaic(const CuviImage& src,
                    CuviImage& dst,
                    const CuviBayerSeq sensorAlignment,
                    const CuviStream& stream = CuviStream());


Parameters

Name Type Description
src const CuviImage& Input Bayer Image
dst CuviImage& Output RGB Image
sensorAlignment CuviBayerSeq Sensor alignment of the bayer image
stream const CuviStream& GPU stream ID for execution

Image Type Support

Input Output
8u 8u
16u 16u

Sample

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

Example

CuviImage input("D:/bayer.tif", CUVI_LOAD_IMAGE_GRAYSCALE_KEEP_DEPTH), output;
 
cuvi::colorOperations::demosaic_DFPD(input, output, CUVI_BAYER_RGGB);
// Or this to further refine the results
cuvi::colorOperations::demosaic_DFPD(input, output, CUVI_BAYER_RGGB, true);
 
cuvi::io::saveImage(output, "D:/debayered.png");