forked from fsphil/fswebcam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dec_bayer.c
106 lines (90 loc) · 2.36 KB
/
dec_bayer.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/* fswebcam - Small and simple webcam for *nix */
/*============================================================*/
/* Copyright (C)2005-2010 Philip Heron <phil@sanslogic.co.uk> */
/* */
/* This program is distributed under the terms of the GNU */
/* General Public License, version 2. You may use, modify, */
/* and redistribute it under the terms of this license. A */
/* copy should be included with this source. */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdint.h>
#include "fswebcam.h"
#include "src.h"
int fswc_add_image_bayer(avgbmp_t *dst, uint8_t *img, uint32_t length, uint32_t w, uint32_t h, int palette)
{
uint32_t x = 0, y = 0;
uint32_t i = w * h;
if(length < i) return(-1);
/* SBGGR8 bayer pattern:
*
* BGBGBGBGBG
* GRGRGRGRGR
* BGBGBGBGBG
* GRGRGRGRGR
*
* SGBRG8 bayer pattern:
*
* GBGBGBGBGB
* RGRGRGRGRG
* GBGBGBGBGB
* RGRGRGRGRG
*
* SGRBG8 bayer pattern:
*
* GRGRGRGRGR
* BGBGBGBGBG
* GRGRGRGRGR
* BGBGBGBGBG
*/
while(i-- > 0)
{
uint8_t *p[8];
uint8_t hn, vn, di;
uint8_t r, g, b;
int mode;
/* Setup pointers to this pixel's neighbours. */
p[0] = img - w - 1;
p[1] = img - w;
p[2] = img - w + 1;
p[3] = img - 1;
p[4] = img + 1;
p[5] = img + w - 1;
p[6] = img + w;
p[7] = img + w + 1;
/* Juggle pointers if they are out of bounds. */
if(!y) { p[0]=p[5]; p[1]=p[6]; p[2]=p[7]; }
else if(y == h - 1) { p[5]=p[0]; p[6]=p[1]; p[7]=p[2]; }
if(!x) { p[0]=p[2]; p[3]=p[4]; p[5]=p[7]; }
else if(x == w - 1) { p[2]=p[0]; p[4]=p[3]; p[7]=p[5]; }
/* Average matching neighbours. */
hn = (*p[3] + *p[4]) / 2;
vn = (*p[1] + *p[6]) / 2;
di = (*p[0] + *p[2] + *p[5] + *p[7]) / 4;
/* Calculate RGB */
if(palette == SRC_PAL_BAYER) mode = (x + y) & 0x01;
else mode = ~(x + y) & 0x01;
if(mode)
{
g = *img;
if(y & 0x01) { r = hn; b = vn; }
else { r = vn; b = hn; }
}
else if(y & 0x01) { r = *img; g = (vn + hn) / 2; b = di; }
else { b = *img; g = (vn + hn) / 2; r = di; }
if(palette == SRC_PAL_SGRBG8)
{
uint8_t t = r;
r = b;
b = t;
}
*(dst++) += r;
*(dst++) += g;
*(dst++) += b;
/* Move to the next pixel (or line) */
if(++x == w) { x = 0; y++; }
img++;
}
return(0);
}