Difference between revisions of "Function:Demosaic"
From CUVI Wiki
(→Sample) |
|||
| Line 64: | Line 64: | ||
|style="font-size:150%;"| | |style="font-size:150%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
// | //Example using C | ||
cuvi:: | |||
CuviImage gimg = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE_KEEP_DEPTH), gout; | |||
cuvi:: | |||
//Demosaic | |||
cuvi::colorOperations::demosaic(gimg,gout,CUVI_BAYER_BGGR); | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Revision as of 08:22, 12 June 2014
Restores an RGB image from a gray-scale CFA image using Bayer algorithm
Function
|
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
Example
|

