From bc5c98e0df72b18a9f4a3d80edef48bd26932c4f Mon Sep 17 00:00:00 2001 From: Patrick Roth Date: Mon, 28 Jun 2021 10:43:54 +0200 Subject: file description header update --- CMakeLists.txt | 6 +++--- alg_ccm.h | 6 ++---- alg_debayer_bilinear.h | 6 ++---- alg_gamma.h | 4 +--- alg_interpolate_mono_scalar.h | 4 +--- alg_interpolate_rgb_scalar.h | 4 +--- alg_rgb_to_yuv.h | 4 +--- alg_yuv_to_rgb.h | 4 +--- camera_calib.c | 4 +--- color.c | 4 +--- color.h | 4 +--- color_pipe_private.h | 4 +--- cpu_feature.c | 4 +--- cpu_feature.h | 6 ++---- debayer.c | 6 ++---- filter.c | 4 +--- filter.h | 6 ++---- gamma_corr.c | 4 +--- sharpening.c | 4 +--- white_balance.c | 6 ++---- 20 files changed, 28 insertions(+), 66 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a8eee6b..d5e82c6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,8 +17,8 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON) # library version definition set(VERSION_MAJOR 1) -set(VERSION_MINOR 0) -set(VERSION_RELEASE 2) +set(VERSION_MINOR 1) +set(VERSION_RELEASE 0) set(VERSION_STR "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_RELEASE}") # pass macros to preprocessor @@ -59,4 +59,4 @@ add_custom_command( COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/$* ${CMAKE_CURRENT_BINARY_DIR}/libo3000_imgpipe-${VERSION_STR}/MinGW${CC_ARCH} COMMAND ${CMAKE_COMMAND} -E tar "cfv" "libo3000_imgpipe-${VERSION_STR}-${CC_ARCH}bit.zip" --format=zip libo3000_imgpipe-${VERSION_STR} COMMAND ${CMAKE_COMMAND} -E remove_directory libo3000_imgpipe-${VERSION_STR} -) \ No newline at end of file +) diff --git a/alg_ccm.h b/alg_ccm.h index 24d37bc..0bc4ac2 100644 --- a/alg_ccm.h +++ b/alg_ccm.h @@ -2,9 +2,7 @@ * @file alg_ccm.h * @brief color correction algorithm definition * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-26 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * @@ -85,4 +83,4 @@ } } -} \ No newline at end of file +} diff --git a/alg_debayer_bilinear.h b/alg_debayer_bilinear.h index 45c8a8d..829d615 100644 --- a/alg_debayer_bilinear.h +++ b/alg_debayer_bilinear.h @@ -2,9 +2,7 @@ * @file alg_debayer_bilinear.h * @brief bilinear demosaicing algorithm * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-20 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * @@ -268,4 +266,4 @@ img_rgb[index_rgb+2] = blue; -} \ No newline at end of file +} diff --git a/alg_gamma.h b/alg_gamma.h index 2f9a7ae..b9a1f10 100644 --- a/alg_gamma.h +++ b/alg_gamma.h @@ -2,9 +2,7 @@ * @file alg_gamma.h * @brief gamma correction algorithm definition * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-09-08 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/alg_interpolate_mono_scalar.h b/alg_interpolate_mono_scalar.h index 9adda8b..25c6d50 100644 --- a/alg_interpolate_mono_scalar.h +++ b/alg_interpolate_mono_scalar.h @@ -2,9 +2,7 @@ * @file alg_interpolate_mono_scalar.h * @brief Monochrome pixel interpolation (scalar code) * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-11-09 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/alg_interpolate_rgb_scalar.h b/alg_interpolate_rgb_scalar.h index aa17c54..3728e17 100644 --- a/alg_interpolate_rgb_scalar.h +++ b/alg_interpolate_rgb_scalar.h @@ -2,9 +2,7 @@ * @file alg_interpolate_rgb_scalar.h * @brief RGB pixel interpolation (scalar code) * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-11-09 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/alg_rgb_to_yuv.h b/alg_rgb_to_yuv.h index f75df6a..851a328 100644 --- a/alg_rgb_to_yuv.h +++ b/alg_rgb_to_yuv.h @@ -2,9 +2,7 @@ * @file alg_rgb_to_yuv.h * @brief color space conversion definitions * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-20 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/alg_yuv_to_rgb.h b/alg_yuv_to_rgb.h index c608a6d..e7885f0 100644 --- a/alg_yuv_to_rgb.h +++ b/alg_yuv_to_rgb.h @@ -2,9 +2,7 @@ * @file alg_yuv_to_rgb.h * @brief color space conversion definitions * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-27 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/camera_calib.c b/camera_calib.c index 804c40d..4b03a12 100644 --- a/camera_calib.c +++ b/camera_calib.c @@ -2,9 +2,7 @@ * @file camera_calib.c * @brief camera calibration algorithm * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-20 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/color.c b/color.c index 4802083..b1670df 100644 --- a/color.c +++ b/color.c @@ -2,9 +2,7 @@ * @file color_space.c * @brief color space conversion utilities * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-20 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/color.h b/color.h index 73bff58..a5c1a88 100644 --- a/color.h +++ b/color.h @@ -2,9 +2,7 @@ * @file color.h * @brief color utility function definition * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-20 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/color_pipe_private.h b/color_pipe_private.h index bf412fe..f5a48f8 100644 --- a/color_pipe_private.h +++ b/color_pipe_private.h @@ -2,9 +2,7 @@ * @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 +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/cpu_feature.c b/cpu_feature.c index 62080a5..e709366 100644 --- a/cpu_feature.c +++ b/cpu_feature.c @@ -2,9 +2,7 @@ * @file cpu_feature.c * @brief CPU feature detection (CPU ID) * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-11-12 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/cpu_feature.h b/cpu_feature.h index 11b5008..bdd4d48 100644 --- a/cpu_feature.h +++ b/cpu_feature.h @@ -2,9 +2,7 @@ * @file cpu_feature.h * @brief CPU feature detection definitions (CPU ID) * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-11-12 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * @@ -45,4 +43,4 @@ enum cpu_feature_t { int cpu_feature_support(enum cpu_feature_t type); int cpu_feature_init(void); -#endif // _CPU_FEATURE_H \ No newline at end of file +#endif // _CPU_FEATURE_H diff --git a/debayer.c b/debayer.c index 1733496..984f928 100644 --- a/debayer.c +++ b/debayer.c @@ -2,9 +2,7 @@ * @file debayer.c * @brief demosaicing algorithms * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-20 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * @@ -240,4 +238,4 @@ int debayer(struct debayer_data_t *debayer_data) { ret = -1; } return ret; -} \ No newline at end of file +} diff --git a/filter.c b/filter.c index 6c8d51a..91b5376 100644 --- a/filter.c +++ b/filter.c @@ -2,9 +2,7 @@ * @file filter.c * @brief various filtering algorithm * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-28 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/filter.h b/filter.h index 5b70294..7299ceb 100644 --- a/filter.h +++ b/filter.h @@ -2,9 +2,7 @@ * @file filter.h * @brief various filtering algorithm definitions * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-28 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * @@ -49,4 +47,4 @@ void filter_binary_3s16(int8_t *img_bin, const int16_t *img_in, const int height #endif -#endif // _FILTER_H \ No newline at end of file +#endif // _FILTER_H diff --git a/gamma_corr.c b/gamma_corr.c index 2a85b1e..7b344c1 100644 --- a/gamma_corr.c +++ b/gamma_corr.c @@ -2,9 +2,7 @@ * @file gamma_corr.c * @brief gamma correction algorithm * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-09-08 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/sharpening.c b/sharpening.c index d997b73..4b114c6 100644 --- a/sharpening.c +++ b/sharpening.c @@ -2,9 +2,7 @@ * @file sharp.c * @brief sharpening algorithm * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-27 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * diff --git a/white_balance.c b/white_balance.c index 0040fb9..fd66f8a 100644 --- a/white_balance.c +++ b/white_balance.c @@ -2,9 +2,7 @@ * @file white_balance.c * @brief white balance algorithm * @author Patrick Roth - roth@stettbacher.ch -* @version 1.0 -* @date 2015-08-20 -* @copyright 2012-2016 Stettbacher Signal Processing AG +* @copyright Stettbacher Signal Processing AG * * @remarks * @@ -282,4 +280,4 @@ int white_balance(struct awb_data_t *awb_data) { // printf("XXX u_avg = %.4f, v_avg = %.4f, red = %.4f, blue = %.4f, bit_channel = %d\n", u_avg, v_avg, awb_data->gain_red, awb_data->gain_blue, bit_channel); return 0; -} \ No newline at end of file +} -- cgit v1.2.1