root/snippet/gaussian_blur/gaussian.h

Revision 83, 215 bytes (checked in by aqua, 3 years ago)

import

Line 
1#ifndef _GAUSSIAN_H_
2#define _GAUSSIAN_H_
3
4#ifndef _UCHAR_T
5#define _UCHAR_T
6typedef unsigned char uchar;
7#endif
8
9#define MASK_LEN 255
10
11void gaussian_blur( uchar* dst, uchar* src, int sigma, int w, int h );
12
13#endif
Note: See TracBrowser for help on using the browser.