eLynx SDK v3.3.0
C++ image processing API reference

Converting Bayer image to RGB

If you are new with Bayer images, start reading theses articles:

Sample code run all the demosaicing algorithms implemented by the elynx SDK:

void convertBayer(const ImageVariant& iImage, const char * iprName)
{
  // process all methods
  for (int i=0; i<int(BCC_Max); i++)
  {
    ImageVariant image(iImage);

    EBayerToColorConversion method = (EBayerToColorConversion)i;
    const char * prMethodName = elxToString(method);
    
    // convert Bayer image to RGB
    image.ChangeToColor(method);

    // let's see more details zooming
    image.Zoom(2);

    // change resolution to UINT8 before saving
    image.ChangeResolution(RT_UINT8);

    // save
    char filename[elxPATH_MAX];
    ::sprintf(filename, "output/%s-%s.png", iprName, prMethodName);
    image.Save(filename); 
  }
}

ImageVariant image("../../datas/docRef/lighthouse.png");
uint32 x=230, y=430, w=200, h=128;
bool bSuccess = image.Crop(x,y, w,h);

image.ChangeToBayer(BM_RGGB);
convertBayer(image, "B1");

Output:
You can follow the link for each samples to get the implementation algorithm documentation.

B1-Nearest.png

Nearest
B1-Bilinear.png

Bilinear
B1-Malvar-He-Cutler.png

Malvar He Cutler
B1-Bicubic.png

Bicubic
B1-Cok.png

David Cok
B1-Freeman.png

Freeman
B1-Adaptive.png

Adaptive
B1-Laroche-Prescott.png

Laroche Prescott
B1-Hamilton.png

Hamilton
B1-Hamilton-Adams.png

Hamilton Adams
B1-Adams.png

Adams
B1-Wang-Lin-Xue.png

Wang Lin Xue
B1-Kimmel.png

Kimmel
B1-Lukin-Kubasov.png

Lukin Kubasov
B1-ChuanLin.png

Chuan Lin
B1-WemmiaoLu.png

Wemmiao Lu
B1-PRI.png

Pattern Recognition Interpolation
B1-PMI.png

Pattern Matching Interpolation
B1-VNG.png

Variable Number of Gradients
B1-AHD.png

Adaptive homogeneity-directed
B1-Chang-Tan.png

Chang Tan
B1-Raw.png

raw Bayer (no interpolation)

Generated on Thu Dec 9 2010 by doxygen 1.7.2