aboutsummaryrefslogtreecommitdiffstats
path: root/color_pipe_private.h
blob: 431158b4a6d054440422b8c8582bba23df0c7621 (plain)
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
/**
* @file			color_pipe_private.c
* @brief		Color Processing Pipeline definitions for internal use only
* @author		Patrick Roth - roth@stettbacher.ch
* @copyright	Stettbacher Signal Processing AG
* 
* @remarks
*
* <PRE>
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* </PRE>
*
*/


#ifndef _COLOR_PROC_PIPE_H
#define _COLOR_PROC_PIPE_H

#include <o3000/o3000_portable.h>
#include <o3000/image_header.h>
#include "color_pipe.h"
#include "cpu_feature.h"

#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif

int debayer(struct debayer_data_t *debayer_data);

int white_balance(struct awb_data_t *awb_data);

int camera_calib(struct cam_calib_data_t *data);

int sharpening(struct sharp_data_t *sharp_data);

int gamma_corr(struct gamma_data_t *gamma_data);

int trapcorr(struct trapcorr_data_t *trapcorr_data);

int projection(struct projection_data_t *data);

#if defined(__cplusplus) || defined(c_plusplus)
} // extern "C"
#endif


#endif // _COLOR_PROC_PIPE_H