/** * @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 * *
* 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
* 
* */ #ifndef _COLOR_PROC_PIPE_H #define _COLOR_PROC_PIPE_H #include #include #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