|
|
| Line 56: |
Line 56: |
|
| |
|
| ====Sample==== | | ====Sample==== |
| {|
| | [[File:BayerHolidayIn.png|none|frame|Input]] |
| |-
| | <br/> |
| |[[File:BayerHolidayIn.png|frame|Input]]
| | [[File:BayerHolidayOut.png|none|frame|Output]] |
| |[[File:BayerHolidayOut.png|frame|Output]]
| | <br/> |
| |-
| | ====Sample==== |
| |[[File:BayerHouseIn.png|frame|Input]]
| | [[File:BayerHouseIn.png|none|frame|Input]] |
| |[[File:BayerHouseOut.png|frame|Output]]
| | <br/> |
| |}
| | [[File:BayerHouseOut.png|none|frame|Output]] |
| | <br/> |
|
| |
|
| ===Example=== | | ===Example=== |
Revision as of 12:57, 18 October 2022
Restores an RGB image from a gray-scale CFA image using Bayer algorithm
Function
CuviStatus demosaic(const CuviImage& src,
CuviImage& dst,
const CuviBayerSeq sensorAlignment,
const CuviStream& stream = CuviStream());
|
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
Input
Output
Sample
Input
Output
Example
//Example using C
CuviImage gimg = cuvi::io::loadImage(path,CUVI_LOAD_IMAGE_GRAYSCALE_KEEP_DEPTH), gout;
//Demosaic
cuvi::colorOperations::demosaic(gimg,gout,CUVI_BAYER_BGGR);
|