blob: 37d67ee00b22ca8a78fbf4ae65261722e25b1c35 (
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
|
struct op_3x3_parm {
int f1[3];
int f2[3];
int f3[3];
int mul,div,add;
};
struct op_sharpe_parm {
int factor;
};
struct op_resize_parm {
int width;
int height;
int dpi;
};
struct op_rotate_parm {
int angle;
};
extern struct ida_op desc_grayscale;
extern struct ida_op desc_3x3;
extern struct ida_op desc_sharpe;
extern struct ida_op desc_resize;
extern struct ida_op desc_rotate;
|