Difference between revisions of "Function:DemosaicDFPD"
From CUVI Wiki
(Created page with "__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 re...") |
|||
| Line 8: | Line 8: | ||
CuviImage& dst, | CuviImage& dst, | ||
const CuviBayerSeq sensorAlignment, | const CuviBayerSeq sensorAlignment, | ||
const bool refineResults, | |||
const CuviStream& stream = CuviStream()); | const CuviStream& stream = CuviStream()); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
===Parameters=== | ===Parameters=== | ||
Revision as of 08:15, 12 June 2014
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 |
| stream | const CuviStream& | GPU stream ID for execution |
Image Type Support
| Input | Output |
|---|---|
| 8u | 8u |
| 16u | 16u |
Sample
Example
|



