diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:56:41 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-04 11:59:33 -0800 |
commit | d577d991b97ae2b5ee1af23641bcffc3f83af5b2 (patch) | |
tree | 590639d50205d1bcfaff2a7d2dc6ebf3f373c7ed /im/include/im_process.h |
Initial import. Contains the im, cd and iup librairies, and a "working" Makefile for them under linux.
Diffstat (limited to 'im/include/im_process.h')
-rwxr-xr-x | im/include/im_process.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/im/include/im_process.h b/im/include/im_process.h new file mode 100755 index 0000000..812dad1 --- /dev/null +++ b/im/include/im_process.h @@ -0,0 +1,36 @@ +/** \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". + * In Lua call require"imlua_process". \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 |