-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyfilter.h
26 lines (21 loc) · 962 Bytes
/
myfilter.h
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
////////////////////////////////////////////////////////////////////////////////
// myfilter.cpp
// Mario Chirinos Colunga
// Áurea - Desarrollo Tecnológico
// http://www.aurea-dt.com
// 26 Jun 2013
//------------------------------------------------------------------------------
// Notes:
// Video filter example
//
////////////////////////////////////////////////////////////////////////////////
#ifndef MYFILTER_H
#define MYFILTER_H
// your public header include
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// the declaration of your class...
//------------------------------------------------------------------------------
void myFilter(unsigned char *data, unsigned int width, unsigned int height, unsigned int nChannels, void* userdata);
//------------------------------------------------------------------------------
#endif