diff options
Diffstat (limited to 'include/im_process.h')
-rw-r--r-- | include/im_process.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/im_process.h b/include/im_process.h new file mode 100644 index 0000000..e0d3d6c --- /dev/null +++ b/include/im_process.h @@ -0,0 +1,35 @@ +/** \file + * \brief Image Processing + * + * See Copyright Notice in im_lib.h + */ + +#ifndef __IM_PROCESS_H +#define __IM_PROCESS_H + +#include "im_process_pon.h" +#include "im_process_loc.h" +#include "im_process_glo.h" +#include "im_process_ana.h" + +#if defined(__cplusplus) +extern "C" { +#endif + + +/** \defgroup process Image Processing + * \par + * Several image processing functions based on the \ref imImage structure. + * \par + * You must link the application with "im_process.lib/.a/.so". \n + * Some complex operations use the \ref counter.\n + * There is no check on the input/output image properties, + * check each function documentation before using it. + */ + + +#if defined(__cplusplus) +} +#endif + +#endif |