bayer2rgb icon indicating copy to clipboard operation
bayer2rgb copied to clipboard

Command line utility to convert bayer grid data to rgb data. Integrates with ImageMagick.

Results 3 bayer2rgb issues
Sort by recently updated
recently updated
newest added

how long time change one 1280*800 pic from Bayer to RGB? and do you know other faster bayer2RGB algorithm ?I know used opencv:read raw first: rawData(rawDataHeight, rawDataWidth, CV_8UC1, cv::Scalar(0)); then...

I would like to use the algorithms from bayer2rgb in my project. I have Nearest Neighbour working perfectly, however, HQLinear and Bilinear attach thin black borders to the delayed image....

``` ./bayer2rgba -fBGGR -b10 -w2720 -v2080 -i./image1.raw -o/tmp/rgb1 Segmentation fault (core dumped) rgb1 is 2 bytes/bayer cell ``` At: ``` rgb[-1] = (uint16_t) t0; rgb[0] = (uint16_t) t1; rgb[1] =...