24#ifndef LIBGPHOTO2_BAYER_H
25#define LIBGPHOTO2_BAYER_H
31int gp_bayer_expand (
unsigned char *input,
int w,
int h,
unsigned char *output,
33int gp_bayer_decode (
unsigned char *input,
int w,
int h,
unsigned char *output,
45int gp_ahd_decode (
unsigned char *input,
int w,
int h,
unsigned char *output,
bayer type definitions common to camlibs and libgphoto2
BayerTile
how the bayer CCD array is laid out
Definition: bayer-types.h:33
int gp_ahd_decode(unsigned char *input, int w, int h, unsigned char *output, BayerTile tile)
Convert a bayer raster style image to a RGB raster.
Definition: ahd_bayer.c:640
int gp_bayer_interpolate(unsigned char *image, int w, int h, BayerTile tile)
Interpolate a expanded bayer array into an RGB image.
Definition: bayer.c:147
int gp_ahd_interpolate(unsigned char *image, int w, int h, BayerTile tile)
Interpolate a expanded bayer array into an RGB image.
Definition: ahd_bayer.c:418
int gp_bayer_expand(unsigned char *input, int w, int h, unsigned char *output, BayerTile tile)
Expand a bayer raster style image to a RGB raster.
Definition: bayer.c:75
int gp_bayer_decode(unsigned char *input, int w, int h, unsigned char *output, BayerTile tile)
Convert a bayer raster style image to a RGB raster.
Definition: bayer.c:371