From e9e9684117719204929821028ba9dbb7915ea119 Mon Sep 17 00:00:00 2001 From: kraxel Date: Sun, 28 Mar 2004 11:31:57 +0000 Subject: Initial revision --- filter.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 filter.h (limited to 'filter.h') diff --git a/filter.h b/filter.h new file mode 100644 index 0000000..37d67ee --- /dev/null +++ b/filter.h @@ -0,0 +1,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; -- cgit