diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-04 14:40:15 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-04 14:40:15 +0200 |
commit | 67d068f7c843e980141cbabad9560154024a1366 (patch) | |
tree | 4d0ce79afee4f27f6488a3ed97a94c3922dd2390 /src/ufodecode.h | |
parent | 847e0fc52cc7fc5f58373d714d67f05755004d56 (diff) | |
download | ufodecode-67d068f7c843e980141cbabad9560154024a1366.tar.gz ufodecode-67d068f7c843e980141cbabad9560154024a1366.tar.bz2 ufodecode-67d068f7c843e980141cbabad9560154024a1366.tar.xz ufodecode-67d068f7c843e980141cbabad9560154024a1366.zip |
Implement simple de-mosaicking of Bayer pattern
Diffstat (limited to 'src/ufodecode.h')
-rw-r--r-- | src/ufodecode.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ufodecode.h b/src/ufodecode.h index 228bec3..91b727a 100644 --- a/src/ufodecode.h +++ b/src/ufodecode.h @@ -91,6 +91,10 @@ void ufo_deinterlace_weave (const uint16_t *in1, uint16_t *out, int width, int height); +void ufo_convert_bayer_to_rgb (const uint16_t *in, + uint8_t *out, + int width, + int height); #ifdef __cplusplus } |