mirror of
https://github.com/opencv/opencv.git
synced 2024-12-16 02:19:12 +08:00
9 lines
160 B
C++
9 lines
160 B
C++
|
#ifndef __CL_PROCESSOR_HPP__
|
||
|
#define __CL_PROCESSOR_HPP__
|
||
|
|
||
|
int initCL();
|
||
|
void closeCL();
|
||
|
void processFrame(int tex1, int tex2, int w, int h, int mode);
|
||
|
|
||
|
#endif
|