Difference between revisions of "Function:Demosaic"
From CUVI Wiki
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Restores an RGB image from a gray-scale CFA image using Bayer algorithm | Restores an RGB image from a gray-scale CFA image using Bayer algorithm | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus demosaic(const CuviImage& src, | CuviStatus demosaic(const CuviImage& src, | ||
| Line 11: | Line 11: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 12:55, 18 October 2022
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 |
|---|---|
| 8uC1 | 8uC3 |
| 16uC1 | 16uC3 |
Sample
Example
|



