#cfa #demosaic

bayer

Algorithms for demosaicing Bayer images

6 releases

Uses old Rust 2015

0.1.5 Jul 22, 2017
0.1.4 Apr 29, 2017
0.1.3 Feb 17, 2017

#407 in Images

Download history 1600/week @ 2023-10-30 1678/week @ 2023-11-06 1804/week @ 2023-11-13 1201/week @ 2023-11-20 1232/week @ 2023-11-27 1092/week @ 2023-12-04 1210/week @ 2023-12-11 972/week @ 2023-12-18 660/week @ 2023-12-25 711/week @ 2024-01-01 1088/week @ 2024-01-08 1249/week @ 2024-01-15 2080/week @ 2024-01-22 2249/week @ 2024-01-29 2334/week @ 2024-02-05 1583/week @ 2024-02-12

8,282 downloads per month
Used in 3 crates (2 directly)

MIT license

70KB
1.5K SLoC

LibBayer Version Status

About

LibBayer provides routines for demosaicing Bayer (raw) images.

The library supports 8-bit and 16-bit images.

Several demosaicing algorithms are available. See the src/demosaic directory for a list and their individual descriptions. Pixels on the border of the image are retained by replicating or mirroring the data in the neighbourhood.

LibBayer is written entirely in Rust. C bindings to the underlying algorithms are provided.

Examples

An example program is provided in the examples/ directory:

  • showbayer - a simple Bayer file viewer.
  • writebayer - converts an image to a raw Bayer image file.

To clone this repository, run:

git clone https://github.com/wangds/libbayer.git

Then build the library and run the example programs using Cargo.

cargo build --release --example showbayer

To display a Bayer file, run:

cargo run --release --example showbayer <width> <height> <depth> <example.raw>

Change the colour filter array (CFA) pattern and the demosaicing algorithm from inside the example program.

Basic Usage

Add LibBayer as a dependency to your project's Cargo.toml:

[dependencies]
bayer = "0.1"

Import the library in your project, e.g.:

extern crate bayer;

Open a Bayer file from disk.

let mut file = File::open(Path::new("example.raw")).unwrap();

This raw data contains the red, green, or blue values at each pixel only. There is no additional header data, so the image width and height, pixel depth, and CFA pattern must be provided from elsewhere.

Allocate the buffer to which we will decode the image.

let img_w = 320;
let img_h = 200;
let depth = bayer::RasterDepth::Depth8;
let bytes_per_pixel = 3;
let mut buf = vec![0; bytes_per_pixel * img_w * img_h];
let mut dst = bayer::RasterMut::new(img_w, img_h, depth, &mut buf);

Then run the demosaicing process:

let cfa = bayer::CFA::RGGB;
let alg = bayer::Demosaic::Linear;
bayer::run_demosaic(&mut file, bayer::BayerDepth:Depth8, cfa, alg, &mut dst);

Note that many cameras will capture 12-bits per pixel (channel), but store the data as 16-bits per pixel. These should be treated as 16-bits per pixel for the purposes of this library.

Documentation

Author

David Wang

Dependencies

~1.5MB
~29K SLoC