summaryrefslogtreecommitdiff
path: root/im/include/im_process.h
diff options
context:
space:
mode:
Diffstat (limited to 'im/include/im_process.h')
-rwxr-xr-xim/include/im_process.h36
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