Difference between revisions of "Function:Demosaic"
From CUVI Wiki
(→Sample) |
|||
| (16 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
Restores an RGB image from a gray-scale CFA image using | Restores an RGB image from a gray-scale CFA image using linear interpolation method. | ||
===Function=== | ====Function==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
CuviStatus demosaic(CuviImage | CuviStatus demosaic(const CuviImage& src, | ||
CuviImage | CuviImage& dst, | ||
CuviBayerSeq | const CuviBayerSeq sensorAlignment, | ||
CuviStream | const CuviStream& stream = CuviStream()); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
====Parameters==== | |||
===Parameters=== | {| | ||
|style="font-size:75%;"| | |||
{|class="wikitable" | {|class="wikitable" | ||
|- | |- | ||
| Line 21: | Line 21: | ||
! Description | ! Description | ||
|- | |- | ||
| | | src | ||
| CuviImage | | const CuviImage& | ||
| Input Bayer Image | | Input Bayer Image | ||
|- | |- | ||
| | | dst | ||
| CuviImage | | CuviImage& | ||
| Output RGB | | Output RGB Image | ||
|- | |- | ||
| | | sensorAlignment | ||
| CuviBayerSeq | | CuviBayerSeq | ||
| | | Sensor alignment of the bayer image | ||
|- | |- | ||
| stream | | stream | ||
| CuviStream | | const CuviStream& | ||
| GPU stream ID for execution | | GPU stream ID for execution | ||
|} | |||
|} | |} | ||
====Image Type Support==== | |||
{| | |||
===Image Type Support=== | |style="font-size:75%;"| | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
| Line 48: | Line 47: | ||
! Output | ! Output | ||
|- | |- | ||
| | | 8uC1 | ||
| | | 8uC3 | ||
|- | |- | ||
| | | 16uC1 | ||
| | | 16uC3 | ||
|} | |||
|} | |} | ||
===Sample=== | ====Sample==== | ||
[[File:BayerHolidayIn.png|none|frame|Input]] | |||
<br/> | |||
[[File:BayerHolidayOut.png|none|frame|Output]] | |||
<br/> | |||
====Sample==== | |||
[[File:BayerHouseIn.png|none|frame|Input]] | |||
<br/> | |||
[[File:BayerHouseOut.png|none|frame|Output]] | |||
<br/> | |||
===Example=== | ====Example==== | ||
{| | {| | ||
|style="font-size: | |style="font-size:100%;"| | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
//Example using C | //Example using C | ||
CuviImage gimg = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE_KEEP_DEPTH), gout; | |||
//Demosaic | //Demosaic | ||
cuvi::colorOperations::demosaic(gimg,gout,CUVI_BAYER_BGGR); | |||
</syntaxhighlight> | </syntaxhighlight> | ||
|} | |} | ||
Latest revision as of 12:35, 23 June 2024
Restores an RGB image from a gray-scale CFA image using linear interpolation method.
Function
|
Parameters
|
Image Type Support
|
Sample
Sample
Example
|



