blob: 812dad1cce20c94b688642cf97468bd553e51fce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
|