aboutsummaryrefslogtreecommitdiffstats
path: root/color_pipe_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'color_pipe_private.h')
-rw-r--r--color_pipe_private.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/color_pipe_private.h b/color_pipe_private.h
new file mode 100644
index 0000000..bf412fe
--- /dev/null
+++ b/color_pipe_private.h
@@ -0,0 +1,57 @@
+/**
+* @file color_pipe_private.c
+* @brief Color Processing Pipeline definitions for internal use only
+* @author Patrick Roth - roth@stettbacher.ch
+* @version 1.0
+* @date 2015-08-20
+* @copyright 2012-2016 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);
+
+#if defined(__cplusplus) || defined(c_plusplus)
+} // extern "C"
+#endif
+
+
+#endif // _COLOR_PROC_PIPE_H