root/snippet/gaussian_blur/image.h

Revision 83, 290 bytes (checked in by aqua, 2 years ago)

import

Line 
1#ifndef _IMAGE_H_
2#define _IMAGE_H_
3
4#ifndef _UCHAR_T
5#define _UCHAR_T
6typedef unsigned char uchar;
7#endif
8
9uchar get_pixel( uchar* src, int x, int y, int width, int height  );
10uchar clip( double pixel );
11
12void difference( uchar* dst, uchar* s1, uchar* s2, int width, int height );
13
14#endif
Note: See TracBrowser for help on using the browser.