Difference between revisions of "Function:DemosaicDFPD"
From CUVI Wiki
m (Jawad moved page Function:DFPD to Function:DemosaicDFPD over redirect) |
|||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Restores an RGB image from a CFA image using DFPD Bayer algorithm. ''Directional Filtering with Posteriori Decision'' to restore the color image gives much better results than demosaic (with bilinear interpolation) and remove artifacts. | Restores an RGB image from a CFA image using DFPD Bayer algorithm. ''Directional Filtering with Posteriori Decision'' to restore the color image gives much better results than demosaic (with bilinear interpolation) and remove artifacts. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus demosaicDFPD(const CuviImage& src, | CuviStatus demosaicDFPD(const CuviImage& src, | ||
Revision as of 12:57, 18 October 2022
Restores an RGB image from a CFA image using DFPD Bayer algorithm. Directional Filtering with Posteriori Decision to restore the color image gives much better results than demosaic (with bilinear interpolation) and remove artifacts.
Function
|
Parameters
| Name | Type | Description |
|---|---|---|
| src | const CuviImage& | Input Bayer Image |
| dst | CuviImage& | Output RGB Image |
| sensorAlignment | CuviBayerSeq | Sensor alignment of the bayer image |
| refineResults | bool | Perform additional refinement step |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8u | 8u |
| 16u | 16u |
Sample
Example
|

